all i get is black rectangle and "waiting for video"
when i check error console in firefox i see there this item:
Code: Select all
Error: vlc.log is undefined
Source File: http://iptv.antik.sk/kamery
Line: 405
Code: Select all
function doGo(targetURL)
{
var vlc = getVLC("vlc");
var options = new Array(":aspect-ratio="+aspectRatio);
vlc.playlist.items.clear();
while( vlc.playlist.items.count > 0 )
{
// clear() may return before the playlist has actually been cleared
// just wait for it to finish its job
}
//var itemId = vlc.playlist.add(targetURL, 'antik', options);
var itemId = vlc.playlist.add(targetURL);
if( itemId != -1 )
{
// clear the message log and enable error logging
vlc.log.verbosity = 1;
vlc.log.messages.clear();
// play MRL
vlc.playlist.playItem(itemId);
if( monitorTimerId == 0 )
{
monitor();
}
}
else
{
// disable log
vlc.log.verbosity = -1;
alert("cannot play at the moment !");
}
};
i see that on this page they still recommend vlc player 0.8.6, but i use 1.0.3. will i have to downgrade to have this working, or is this error completely unrelated and error must be in something else?
i tried to contact webmasterbut i never got any reply, so think if i want to have it working i must take care of it myself...
![Sad :(](./images/smilies/icon_sad.gif)
thanks for any hint how to make it work