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