No Description Available
0
MediaElementJs is an open-source Html5 video player that can supports Video, Audio, Streaming, and multiple social media video playback.
onex
Videojs is the most popular widely used open-source HTML5 video player that supports modern streaming formats as well as Youtube, Vimeo, and even flash files through the plugin.
// For Single Player Just User Plyr('--css-selector') // Multiple Player Setup const player = new Plyr.setup('.player')
<div class="container"> <div class="row"> <div class="col-md-6 mt-5"> <div class="card"> <div class="card-body"> <h4>Playing Youtube Video</h4> <div class="player" data-plyr-provider="youtube" data-plyr-embed-id="qFkNATtc3mc"></div> </div> </div> </div> <div class="col-md-6 mt-5"> <div class="card"> <div class="card-body"> <h4>Playing Vimeo Video</h4> <div class="player" data-plyr-provider="vimeo" data-plyr-embed-id="76979871"></div> </div> </div> </div> <div class="col-md-6 offset-md-3 mt-5"> <div class="card"> <div class="card-body"> <h4>Playing Local Video</h4> <video src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" class="player" controls data-plyr-config='{ "title": "Example Video Title" }' poster="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/BigBuckBunny.jpg"></video> </div> </div> </div> </div> </div>