can emfield module support facebook videos?

write link
http://www.facebook.com/video/video.php?v=84821807953&ref=nf and it show on site

sing up needed on facebook emfield coders can do that?

CommentFileSizeAuthor
#7 facebookvideos.png13.03 KBeiland
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

aaron’s picture

not yet, but patches are welcome!

Ortaga’s picture

I Used Apture http://drupal.org/project/apture
Using this its easy to embed facebook video.

eiland’s picture

subscribe.

i obviously dont want to install another plugin next to emfield, thank you.

doesnt this work with custom url?

Alex UA’s picture

Status: Active » Closed (won't fix)

No, it does not work with custom URL. Marking as won't fix, since this will need it's own Media: Facebook Videos module to work.

frazras’s picture

Status: Closed (won't fix) » Active

here is a suggested fix - perhaps someone can code this in. I would really appreciate that.

http://www.shoutpedia.com/how-to-embed-facebook-video-in-wordpress-blog-...

Alex UA’s picture

Status: Active » Closed (won't fix)
Issue tags: +emfield provider request

That's not actually a solution, it's just recommending that you paste the url code directly into a text field (which you could always do, but it would have nothing to do with emfield).

eiland’s picture

Component: Documentation » Embedded Video Field
FileSize
13.03 KB

For reference sake:

<object width="400" height="224" >
 <param name="allowfullscreen" value="true" />
 <param name="allowscriptaccess" value="always" />
 <param name="movie" value="http://www.facebook.com/v/xxx" />
 <embed src="http://www.facebook.com/v/xxx" type="application/x-shockwave-flash"
   allowscriptaccess="always" allowfullscreen="true" width="400" height="224">
 </embed>
</object> 

For xxx see the attach
(source)

For the record, I find te construction, where every media has its own module very cumbersome. For example, I have an issue ([#3709279]) with youtube, but because youtube embedig is now degraded to somebodies' sparetime hobby, it won't be picked up. But those add-on modules are too hermeneutic for n00bs like me to be modified.

BDaggerhart’s picture

Are there any updates on this for displaying facebook videos in drupal? I would love to see an emfield support for it, instead of installing YAM (yet another module) :)

captix’s picture

is emfield ready for embed facebook?

eiland’s picture

Status: Closed (won't fix) » Active

Im surprised this isnt dealt with yet,

imagine video http://www.facebook.com/video/video.php?v=10100467719772841&ref=nf

then this jquery will display it:

   var videoID = "10100467719772841";

   // Get JSON array of videos
   $.getJSON("https://graph.facebook.com/fql?q=SELECT owner, title, description, thumbnail_link, embed_html, updated_time, created_time FROM video WHERE vid=" + videoID, function(videos) {
    $.each(videos.data, function(ix, el) {
        var title = el.title;
        var description = el.description;
        var thumb = el.thumbnail_link;
        var embedPlayer = el.embed_html;
        embedPlayer =  embedPlayer.replace("https://graph.facebook.com", "https://www.facebook.com");
        $("body").append("<div>" + title + "<br/>" + embedPlayer + "</div><br/><br/><hr/>");        
    });
   });
});