Skip to content

Instantly share code, notes, and snippets.

@saccadic
Created July 21, 2023 15:10
Show Gist options
  • Save saccadic/3040a222d040633d798133fef7798876 to your computer and use it in GitHub Desktop.
Save saccadic/3040a222d040633d798133fef7798876 to your computer and use it in GitHub Desktop.
hls sample
<!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