flv file
Posted on: Tue, 02/03/2009 - 12:29
flv file
can divx connected play flv files???
i would like to make a plug in who could play a file from canalplus.fr (for example this URL:
http://vod-flash.canalplus.fr/WWWPLUS/PROGRESSIF/0901/GROLAND_EMISSION_090131_CAN_73242_video_H.flv )
is it possible to have an example??
thanks so much
License Agreement
NO COMMERCIAL USE: This License Agreement grants our community members the right to use the Software downloaded from DivX Labs for personal use only in order to evaluate and provide feedback about it to DivX, Inc. Commercial use of the Software or of the work products resulting from its use is not permitted under the Terms of Use of DivX Labs.- To read the full Terms of Use please visit the Terms of Use page.
- To inquire about commercial licensing please email us


great!!
We cannot play the FLV directly, but what you can do is pass the FLV through a Flash player and embed that player in HTML, which makes it a compatible plug-in.
This is what I do for the ABC News plug-in:
http://labs.divx.com/node/7284
Using the loadFromPageDescriptor, you can can load the FLV in your flash player of choice:
http://labs.divx.com/node/6609
e.g.
var path = "http://vod-flash.canalplus.fr/WWWPLUS/PROGRESSIF/0901/GROLAND_EMISSION_090131_CAN_73242_video_H.flv"
params.uri = "http://pathTOyourPlayer.com/player.swf?file="+path +"&autostart=true&stretching=exactfit&volume=100&controlbar=none";
I used the JWplayer in this case:
http://www.longtailvideo.com/players/jw-flv-player/
Feel free to ask for more help if you need it.
cool