diff options
-rw-r--r-- | History | 2 | ||||
-rw-r--r-- | index.html | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -22,7 +22,7 @@ VDR 1.7.29+ Updated channels script, now adds timestamp to list which is shown in info menu. EPG Mode can be set (Now/Next only or Full EPG from stream) Client for MPD (http://www.musicpd.org/) turned off by default (settings.js) - Some times after fast zapping you get an connection error. Next play after zap within 1,5 s has 300 ms delay. + Some times after fast zapping you get an connection error. Next play after zap within 5 s has 500 ms delay. support for reccmds.conf (max 9 options can be used) and must be enabled in smarttvweb plugin in recordings menu key_1 selects reccmds.conf option 1 (In my case move to other HDD script) @@ -461,8 +461,8 @@ function play(uri) { URL = uri; initialDelayPlayID = setTimeout("mediaPlayer.open(URL);mediaPlayer.play(1000);GetEPG(currChan);ExtraStuff();",initialDelayPlay); - initialDelayPlay = 300; // wait 300 ms before zap to next channel - PlayDelayID = setTimeout("initialDelayPlay = 0;",1500); + initialDelayPlay = 500; // wait 500 ms before zap to next channel + PlayDelayID = setTimeout("initialDelayPlay = 0;",5000); SetLed(1,1,0); if(isFullscreen) { showOSD(); } @@ -3924,7 +3924,7 @@ try { option = Number(option); if (RecCmds[option] > -1 ) { var xmlhttp = new XMLHttpRequest(); - xmlhttp.open("POST", server_ip + recServ + "/execreccmd?cmd=" + RecCmds[option] + "&guid=" + recGUID[currMed], false); + xmlhttp.open("POST", server_ip + recServ + "/execreccmd?cmd=" + RecCmds[option] + "&guid=\"" + recGUID[currMed] + "\"", false); xmlhttp.send(); recList[currMed] = RecCmdsIcon[option] + recList[currMed].substring(1); showMediaList(); |