Video Hosting
- Youtube, Vimeo
- Wowza
- Mux Video
- Panopto
- Kaltura
- Limelight
- Brightcove
Embedding Video
- "embed" click, copy :)
- More control with JavaScript video libraries. Some are proprietary to the service, others are open.
Examples
- Example 1 - video element and mp4 file
<video controls width="600" poster="images/bigbuckbunny.png"> <source src="video/BigBuckBunny.mp4" type="video/mp4"> Sorry, your browser doesn't support embedded videos. </video>
- Example 2 - Video JS library and video from Mux Video platform
<video id="my-video" class="video-js" controls preload="auto" data-setup='{"poster": "images/bigbuckbunny.png"}'> <source src="https://stream.mux.com/K7mw8M3qOl5t35gUaYy9FxmYkGcZHMYq7xkwab01Q9MM.m3u8" type="application/x-mpegURL" /> <p class="vjs-no-js"> To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a> </p> </video> <script src="https://vjs.zencdn.net/7.15.4/video.min.js"></script>