Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!-- CSS -->
  2. <link href="https://vjs.zencdn.net/7.2.3/video-js.css" rel="stylesheet">
  3.  
  4.  
  5. <!-- HTML -->
  6. <video id='hls-example' class="video-js vjs-default-skin" width="400" height="300" controls>
  7. <source type="application/x-mpegURL" src="stream.m3u8">
  8. </video>
  9.  
  10.  
  11. <!-- JS code -->
  12. <!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
  13. <script src="https://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script>
  14. <script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/5.14.1/videojs-contrib-hls.js"></script>
  15. <script src="https://vjs.zencdn.net/7.2.3/video.js"></script>
  16.  
  17. <script>
  18. var player = videojs('hls-example');
  19. player.play();
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement