I'm currently trying to embed vlc 0.9.8 / 0.9.9 (try both) in both firefox and internet explorer (IE7 and IE8).
After several search on google and this forum, I came up with the following HTML code :
Code: Select all
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" width="400" height="300" id="vlc" events="True">
<param name="Src" value="http://192.168.2.16:8089/webplayer/mediaResources/all/video/test.mpg"></param>
<param name="ShowDisplay" value="True" ></param>
<param name="AutoLoop" value="no"></param>
<param name="AutoPlay" value="yes"></param>
<embed type="application/x-google-vlc-plugin" name="vlcfirefox" autoplay="yes" loop="no" width="400" height="300" target="http://192.168.2.16:8089/webplayer/mediaResources/all/video/test.mpg"></embed>
</object>
In firefox, all green. VLC plugin is fine, and can play my videos perfectly.
In IE 7, during the first request to the page, I receive the IE message about vlc activeX control not installed / not activated (I checked the box during installation ...), so I tried to download it : axvlc.cab doesn't exist at this url : http://downloads.videolan.org/pub/video ... /axvlc.cab.
I looked after that in IE 7 profile, found vlc activeX and activated it. I relaunch IE7, but, when I'm trying to play my video, nothing happened (I have the <object>...</object> code, but no reaction).
In IE 8, same steps, but when I tried to find VLC in the activeX currently installed, nothing appears, VLC doesn't seems to exist.
So, I have the following questions :
- where can I find a current version of axvlc.cab, in order to integrate it in my <object> codebase ?
- what happened to VLC active X in Internet Explorer 8 ? where is it ?
- which steps must be done to use VLC active X after I check the box during the installation ?
- Did I do something wrong in my HTML page ? (because IE7 doesn't want to play my video, even with vlc activeX activated)
Thanks for your help,
Pierrick