Created
November 2, 2016 15:01
-
-
Save nekojaxa/f1fb9a79b6f1206d88d5ca9dac9a7a3a to your computer and use it in GitHub Desktop.
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"> | |
<title>HLS with Video.js Demo in KAROUSHI Blog</title> | |
<link href="css/video-js.min.css" rel="stylesheet"> | |
<script src="js/video.js"></script> | |
<script src="js/videojs-media-sources.js"></script> | |
<script src="js/videojs.hls.min.js"></script> | |
<script type="text/javascript"> | |
videojs.options.flash.swf = "js/video-js.swf"; | |
</script> | |
</head> | |
<body> | |
<video id="demo" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="auto" width="640" height="360" data-setup="{}"> | |
<source src="http://<IP Addresses>/sample.m3u8" type="application/x-mpegURL"> | |
</video> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment