Page 1 of 1

Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 18:56
by vnggui
Hi,

I download VLC 2.15 execute file in windows, during installation, check Mozilla Plugin and ActiveX Plugin, after installation finish, check IE add-ons, there is no VLC plugin there, I try several times and run regsvr32 axvlc.dll as well, no luck.

any help?

thanks,

vng

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 19:04
by RSATom
You could try fbvlc...

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 19:43
by da2424
The plugin will not automatically listed in IE. Try it with the VLC Plugin test page:
http://git.videolan.org/?p=npapi-vlc.gi ... ml;hb=HEAD

It should now appear a security message, which must be confirmed. Now the plugin should listed in the addons menu.

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 19:56
by vnggui

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:00
by da2424
The displayed link text is reduced from the forum software, please click onto the link, then it will work ;)

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:08
by vnggui
same, not working.

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:13
by da2424
Which VLC have you installed? 32bit or 64bit?

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:19
by vnggui
try both 32bit and 64 bit

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:24
by vnggui
@RSATom,
download FBVLC_0.1.5_vlc_2.1.3 and install, seems no chance to check ActiveX Plugin. Installation success but don't see VLC plugin in IE (Win 8, IE10 and Win 7 IE9).

Re: Can't get VLC plugin in IE 9

Posted: 22 Oct 2014 20:39
by da2424
If it doesn't work with FBVLC, too, then it seems for me that there is a problem in IE or Windows. FBVLC should be listed directly after the installation, if IE was (re)opened after the installation.

Re: Can't get VLC plugin in IE 9

Posted: 23 Oct 2014 04:51
by RSATom
@RSATom,
download FBVLC_0.1.5_vlc_2.1.3 and install, seems no chance to check ActiveX Plugin. Installation success but don't see VLC plugin in IE (Win 8, IE10 and Win 7 IE9).
did you try to open http://rsatom.github.io/fbvlc/ ?

Re: Can't get VLC plugin in IE 9

Posted: 23 Oct 2014 04:53
by RSATom
For fbvlc you have to use little different html. Look to page source at http://rsatom.github.io/fbvlc/

Re: Can't get VLC plugin in IE 9

Posted: 23 Oct 2014 21:14
by vnggui
Thanks, RSATom, http://rsatom.github.io/fbvlc/ works perfect for two modes with IE 9, Chrome and Firefox.

I made standard vlc working as well, the only thing for standard vlc, IE 9 need extra browser refresh to get video .
here is the sample code: (VID_10212014.mp4 can be any .mp4 file)

http://localhost/vlc/web-convertie.html
<html>
<head>
<meta content="IE=EDGE" http-equiv="X-UA-Compatible">
<title>VLC Player</title>
</head>
<body>
<div style="width: 100%; height: 100%; position: relative; background-color: black;" id="p1" class="myplayer">
<div style="width: 100%; height: 100%; display: block;" id="player_78587">
<object type="application/x-vlc-plugin" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" width="400" height="300" >
<param name="Src" value="http://10.51.51.73/clients/vlc/VID_10212014.mp4">
<param name="windowless" value="true"></object>
</object>
</div>
</div>
</body>
</html>

Any suggestions?

Re: Can't get VLC plugin in IE 9

Posted: 25 Oct 2014 00:19
by vnggui
@RSATom,
A urgent question regarding to your reference http://rsatom.github.io/fbvlc/
I want to load an empty VLC player and feed video URL later, but can't make it work.
like: document.getElementById(this.options.playerId + "_emb").play("http://10.51.51.73/clients/vlc/VID_10212014.mp4");
give me error .play not supported.

how your "<button id="w_play_button" onclick="plugin_wl().play(getByID('MRL_wl').value)">play</button>" can work?

thanks ahead,

vng

Re: Can't get VLC plugin in IE 9

Posted: 25 Oct 2014 04:12
by RSATom
maybe tag with id

Code: Select all

this.options.playerId + "_emb"
not exists?

Re: Can't get VLC plugin in IE 9

Posted: 27 Oct 2014 17:22
by vnggui
Thanks, RSATom.

this.options.playerId + "_emb" exists which is this.player = getElementByID(..) is there.
method this.player.play() not there,but this.player.playlist.add(...) exist.

Re: Can't get VLC plugin in IE 9

Posted: 27 Oct 2014 19:25
by RSATom
could you give link to full page?