function create_vs() { var x = document.createElement("VIDEO"); x.setAttribute("crossorigin","anonymous"); x.setAttribute("preload","none"); x.setAttribute("oncontextmenu","return true"); x.setAttribute("id","video"); x.setAttribute("width", "640px"); x.setAttribute("height", "360px"); x.setAttribute("poster", "/imgs/loco/loco_poster_HQ.png?nocache=1682485803"); x.setAttribute("controls", "controls"); x.setAttribute("class", "video-js vjs-default-skin video_player"); document.body.appendChild(x); document.getElementById("vid_div").appendChild(x); var y = document.createElement("SOURCE"); y.setAttribute("src","http://85.239.54.197:81/live/loco_hi/index.m3u8"); y.setAttribute("type","application/vnd.apple.mpegURL"); y.setAttribute("label","Server 1"); y.setAttribute("res","1"); document.getElementById("video").appendChild(y); var z = document.createElement("SOURCE"); z.setAttribute("src","http://51.222.85.85:81/hls/loco/index.m3u8"); z.setAttribute("type","application/vnd.apple.mpegURL"); z.setAttribute("label","Server 2"); z.setAttribute("res","2"); document.getElementById("video").appendChild(z); var ylow = document.createElement("SOURCE"); ylow.setAttribute("src","http://85.239.54.197:81/live/loco_low/index.m3u8"); ylow.setAttribute("type","application/vnd.apple.mpegURL"); ylow.setAttribute("label","LowQ"); ylow.setAttribute("res","3"); document.getElementById("video").appendChild(ylow); x.autoplay = false; }