How to embed facebook videos in web page
Face book didn’t allowed in start to embed face book videos to third party applications or websites. Now face book has enabled this feature, but for many users this is very difficult, as their is no plugin available for this.
Here is a simple solution for this.
Open face book video page.
Every video uploaded on Facebook has a unique ID that you can find in the browser’s address bar (look for the value of parameter “v”).
See yellow highlighted area in picture below.

Copy that number and replace it with xxx in the code below.
<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>
Copy this code to any page you want to publish this video.
Hope It Works.

Related posts:
thx nice work