I used javasript arrays on my network to play Youtube videos continuously. Please try at:
http://play-videos.url.ph/v3/search-play.html
tit = []; vid = []; portion = 50;
body{background-color:#999999; margin:0px;padding:0px; font-family:Arial;font-size:10pt;} td{border:1px solid gray;font-size:10pt;} a{text-decoration:none;} a:hover{color:green;} input[type="button"], button{ background-color:#DDDDDD;cursor:pointer;padding:0px; } #vtitle{ width:980px;height:25px;color:white;background-color:#1B1B1B; margin-top:-2px;overflow:hidden;padding-top:10px; } #header1{font-weight:bold;width:100%;height:24px; background-color:#006699;padding:3px;position: fixed;left: 0px;top: 0px;} #header1 td {border: none;}
<body onload="init()"> <div align="center"> <table id="header1" width=100% height="42px" style="margin-bottom:-7px;"> <tr> <td width="50%" style="color:white;font-family:'Time New Roman';font-size:14pt"> <b><i> SEARCH AND PLAY CONTINUOUSLY</i></b> </td> <td width="50%" align="right"> <button type="button" onclick="player.pauseVideo();">|| Pause</button> <button type="button" onclick="player.playVideo();">> Play</button> <button type="button" onclick="nextVid();">>> Next</button> </td> </tr> </table> <div id='player' style="margin-top:37px"></div> <div id="vtitle"></div><br> <div id="menu" style="background-color:#99CCFF;padding:4px;width:100%"> <table ><tr style="font-size:10pt;"> <td style="background-color:white" style="border:1px gray solid"> <b>All: <span id="wantSpan" style="font-size:12pt;font-style: italic">0</span></b> <b><i>Found:</i> <span id="foundText" style="font-size:12pt;font-style: italic;color:green">0 </span> </td></b> <td style="border:1px gray solid;vertical-align:middle"> <b><i style="color:black;font-size:10pt">Search Text:</i></b> <input type="text" value="Folli Michelangelo" id="searchtext1" size="72" style="border-style:inset"> <button type="button" onclick="start(150)">S150</button> <button type="button" onclick="start(300)">S300</button> </td> </tr></table> </div><br> <div id="tip" style = "width:780px;height:15px;overflow:auto;background-color:white;text-align:left;padding:10px;line-height:160%"> <a href="#" onclick="readyTerm('Ricky King'); return false">Ricky King</a>, <a href="#" onclick="readyTerm('Paul Mauriat'); return false">Paul Mauriat</a>, <a href="#" onclick="readyTerm('Richard Clayderman'); return false">Richard Clayderman</a>, <a href="#" onclick="readyTerm('Folli Michelangelo'); return false">Folli Michelangelo</a> </div><br> <b>SEARCH RESULTS</b> <br><br> <div id="list1" style="width:800px;;height:300px;overflow:auto;background-color:white;text-align:left"> <table id="tableA" width="100%"><tbody id="r1"> </tbody></table> </div><br> </div>
source share