it seems that every few months there is new virsion of vlc and all of the old acommands doesnt works anymore.
i am using this 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="vlc1" events="True">
<param name="Src" value="http://localhost/test.avi"></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://localhost/test.avi"></embed>
</object>
<script type='text/javascript'>
window.onload = function(){
var vlc1 = document.getElementById('vlc1');
vlc1.playlist.playItem( vlc1.playlist.add('http://localhost/test.avi') );
};
</script>
i need to be able to edit the play list play stop...
i cant find it on the forum. i cant find docs with help
even if someone did it its not working anymore for me. since the function vlc1.playlist is not defiend anymore.
please help...