How to convert a flash movie/video file to HTML?

use this code

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>

somefilename.swf <-- flash file

you can search on Google or yahoo "embed flash into HTML"
 
Back
Top