Is there a way I can make the videos on my website embedabble in Facebook the same way Youtube's videos are?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Youtube uses a iframe that is sized to fit the video player. Theoretically, you could do the same with your own video content.

<iframe width="X" height="Y" 
src="http://www.example.com/yourvideocontent" 
frameborder="0"></iframe>

Where X is width and Y is height. You might have to play with it to get it to work they way you want it to work, but this is the basic idea.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.