Created
July 21, 2023 15:10
-
-
Save saccadic/3040a222d040633d798133fef7798876 to your computer and use it in GitHub Desktop.
hls sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8" /> | |
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script> | |
<title>hlsjs</title> | |
</head> | |
<body> | |
<video id="video_smaple" controls> | |
<script> | |
if(Hls.isSupported()) { | |
var video = document.getElementById('video_smaple'); //videoタグと同じIDにする | |
var hls = new Hls(); | |
hls.loadSource('https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel.ism/.m3u8'); //ここで.m3u8ファイルを指定 | |
hls.attachMedia(video); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment