test videojs
This commit is contained in:
		@@ -6,14 +6,15 @@ document.addEventListener("DOMContentLoaded", () => {
 | 
			
		||||
        let upstream = "{{ stream }}";
 | 
			
		||||
        xhr.addEventListener("load", () => {
 | 
			
		||||
            let video = document.createElement("video");
 | 
			
		||||
            video.id = "video-player";
 | 
			
		||||
            //video.id = "video-player";
 | 
			
		||||
            video.className = "video-js";
 | 
			
		||||
            body.appendChild(video);
 | 
			
		||||
            let ctype = xhr.getResponseHeader("Content-Type");
 | 
			
		||||
            console.log(ctype);
 | 
			
		||||
            let options = {};
 | 
			
		||||
            options.controls = true;
 | 
			
		||||
            let player = videojs("video-player", options);
 | 
			
		||||
            options.liveui = true;
 | 
			
		||||
            let player = videojs(video, options);
 | 
			
		||||
            let source = {};
 | 
			
		||||
            source.type = ctype;
 | 
			
		||||
            source.src = upstream;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user