see (https://aws.amazon.com/pt/solutions/video-on-demand-on-aws/)
Created
December 11, 2019 21:32
-
-
Save luizamboni/e3eed94ff4fdf8bdbe80d4cab452b40a to your computer and use it in GitHub Desktop.
stream from cloudfront
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
<!-- | |
https://aws.amazon.com/pt/solutions/video-on-demand-on-aws/ | |
--> | |
<link href="https://vjs.zencdn.net/7.2.3/video-js.css" rel="stylesheet"> | |
<!-- JS code --> | |
<!-- If you'd like to support IE8 (for Video.js versions prior to v7) --> | |
<!-- <script src="https://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/5.14.1/videojs-contrib-hls.js"></script> | |
--><script src="https://vjs.zencdn.net/7.2.3/video.js"></script> | |
<video id="hls-example" controls> | |
<source | |
src="https://dxzlfjix1ld9a.cloudfront.net/a4b55cea-2398-4230-8e9d-5096302c1487/hls/SampleVideo_1280x720_20mb.m3u8" | |
type="application/x-mpegURL" | |
/> | |
<!-- | |
<source src="https://dxzlfjix1ld9a.cloudfront.net/a4b55cea-2398-4230-8e9d-5096302c1487/mp4/SampleVideo_1280x720_20mb_Mp4_Avc_Aac_16x9_1280x720p_24Hz_4.5Mbps_qvbr.mp4" /> --> | |
Your browser does not support HTML5 video. | |
</video> | |
<script> | |
var player = videojs('hls-example'); | |
player.play(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment