Page 1 of 1

VLC Mozilla Plugin crashes after exit

Posted: 30 Sep 2011 23:48
by jchristoff
I embed VLC mozilla plugin into a mozilla page. When I close the browser and come back, or reload the page the plugin crashes. I can have multiple instances running at once and they will all crash when any one exits.
Page:

<html>
<head>
<title>VLC Plugin Test Page</title>
<script type=text/javascript">
</script>
</head>
<body>
<embed type="application/x-vlc-plugin"
pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2"
width="720"
height="480"
id="vlc1">

<script language="Javascript">

vlc1.playlist.stop();
pl = vlc1.playlist.add("big_buck_bunny.mov");
vlc1.playlist.playItem(pl);
vlc1.video.deinterlace.enable('blend');
</script>



<br>

</body>
</html>


Thank you,

Jordan

Re: VLC Mozilla Plugin crashes after exit

Posted: 03 Oct 2011 15:30
by Jean-Baptiste Kempf
VLC version?

Re: VLC Mozilla Plugin crashes after exit

Posted: 04 Oct 2011 00:36
by jchristoff
1.1.11 (The Luggage). Sorry to not have included that in the first place.