You can try for it Video to Flash converter and there generate HTML for website. I know there is a free trial version without time limit.
Hi all! Btw searching through the I-net i found some prog related with this topic, its VisiFly at visifly.com. Good luck!
Riva FLV Encoder enables you to convert video files to Flash. http://www.rivavx.com/index.php?encoder&L=3 It's freeware.
you can try Flash Video MX, that can generate independent flv player, you can google to get it. In the Flash Video MX installation folder, there is a folder named "Control", in which each of the SWF files is a FLV Player. These SWF files not only can be applied by Flash Video MX, but also are independent FLV Players. The SWF file generated by Flash Video MX can be an independent FLV Player as well. The difference between the SWF file as FLV player generated and the SWF file in the "Control" folder lies in that the default action of the SWF file in the "Control" folder has been changed according to the settings in Flash Video MX to generate a new SWF file. What you need to do is to embed this SWF file into an HTML page, and then pass a character string named playerOpts from the SWF file path, so as to control the action of the control bar. You can code the page like the following: <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="400" height="300"> <param name=movie value="mflvplayer.swf?playerOpts=targetClip*demo.flv*s"> <param name=quality value=high> <embed src="mflvplayer.swf?playerOpts=targetClip*demo.flv*s" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="400" height="300"> </embed> </object>