i am trying to play elephant dream 1920 HD video via vlc web plugin.
I can play the file with vlc but in the web plugin the screen stays black.
I have tried IE and FF, VLC 1.0.5 and 1.1.4.
Here's the code I think should work (and it works with other video files):
Code: Select all
<html>
<head>
<title>vlc test</title>
</head>
<body>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2"
target="http://localhost/test/ed_hd.avi"
autoplay="true">
</embed>
<!--<object type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2" id="vlc"
width="100%" height="100%"
events="True" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
style="width:100%;height:100%;">
<param name="src" value="http://localhost/test/ed_hd.avi" />
<param name="volume" value="50" />
<param name="autoplay" value="true" />
<param name="fullscreen" value="false" />
</object>-->
</body>
</html>
Thank you