Code: Select all
Fehler: vlc1.playlist is undefined
Quelldatei: file:///C:/Users/carlos/Desktop/cam.html
Zeile: 18
Using the same camera and URL its working in vlc (network stream).
The same code is working on an other pc (same Firefox and VLC version) but winxp
Code: Select all
<span>cam1</span><br>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2" width="560" height="420" id="vlc1">
</embed>
<script language="Javascript">
var vlc1=document.getElementById("vlc1");
var id1=vlc1.playlist.add("rtsp://192.168.1.52/live.sdp");
vlc1.playlist.playItem(id1);
</script>
Carlos