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
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



great!!