DEMO
CODE
<!-- Docs styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/CDNSFree2/Plyr/plyr.css" />
<!--Add a Simple HTML5 Video tag-->
<div id="container">
<video controls data-poster="https://w7.pngwing.com/pngs/1020/528/png-transparent-arabic-calligraphy-illustration-basmala-quran-arabic-calligraphy-kufic-islamic-icon-text-camera-icon-logo.png" class="vid1">
<!-- Video files -->
<source src="https://onmyteams-my.sharepoint.com/:v:/g/personal/animeotakus_meta_stulive_com/EXB7nVGOwwxPtJiYFR8Mk-oBAgeLZS5KbBjjgtI9DNigWA?e=sytIN3&download=1" type="video/mp4" size="576" />
<!-- Caption files -->
<track kind="captions" label="English" srclang="en" src="https://cdn.plyr.io/static/demo/View_From_A_Blue_Moon_Trailer-HD.en.vtt" default />
<track kind="captions" label="Français" srclang="fr" src="https://cdn.plyr.io/static/demo/View_From_A_Blue_Moon_Trailer-HD.fr.vtt" />
</video>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.7/plyr.min.js"></script>
<script>
var controls =
[
'play-large', // The large play button in the center
// 'restart', // Restart playback
// 'rewind', // Rewind by the seek time (default 10 seconds)
'play', // Play/pause playback
'fast-forward', // Fast forward by the seek time (default 10 seconds)
'progress', // The progress bar and scrubber for playback and buffering
'current-time', // The current time of playback
'duration', // The full duration of the media
'mute', // Toggle mute
'volume', // Volume control
'captions', // Toggle captions
'settings', // Settings menu
'pip', // Picture-in-picture (currently Safari only)
'airplay', // Airplay (currently Safari only)
'download', // Show a download button with a link to either the current source or a custom URL you specify in your options
'fullscreen' // Toggle fullscreen
];
const player = new Plyr('.vid1',{controls});
</script>
<style>
:root {
--plyr-color-main: #e657ff;
--plyr-video-control-color :#e8ffba;
}
</style>