I know how to embed video from Facebook onto my page:
<object width="400" height="224">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie"
value="http://www.facebook.com/v/${ytNativeContentId}" />
<embed src="http://www.facebook.com/v/${ytNativeContentId}"
type="application/x-shockwave-flash" allowscriptaccess="always"
allowfullscreen="true" width="400" height="224">
</embed>
</object>
My problem is that I need the "current time" during video playback. For YouTube videos I can use the API provided by Google. However, I cannot understand how to get this information with Facebook videos.
I know that with HTML5 tag I can retrieve such information. However, I cannot find how to embed Facebook videos using HTML5.
Thanks, Aritomo