Chromecast example using a poster as a background while casting.
<div class="flex w-full h-auto my-auto">
<video class="video-js vjs-default-skin vjs-fluid " crossorigin="anonymous" controls="" id="subtitles"></video>
</div>
<script type="text/javascript">
var player = videojs("subtitles", {
"castInfo": {
"artwork": [
{
"sizes": "128x128",
"src": "images/stills/bbb_128x128.png",
"type": "image/png"
},
{
"sizes": "512x512",
"src": "images/stills/bbb_512x512.png",
"type": "image/png"
}
],
"images": [
{
"url": "http://192.168.5.25:8000/plugins//videojs/chromecast/images/stills/bbb_still.jpg"
}
],
"subtitle": "Subtitle",
"title": "Big Buck Bunny"
},
"plugins": {
"chromecast": {
"castAppID": "5C78621A"
}
},
"sources": [
{
"src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.mp4",
"type": "video/mp4"
},
{
"src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.ogv",
"type": "video/ogg"
}
],
"tracks": [
{
"default": 1,
"kind": "subtitles",
"label": "English",
"src": "//videos.electroteque.org/subtitles/sintel/sintel_en.vtt",
"srclang": "en"
},
{
"kind": "subtitles",
"label": "Deutsch",
"src": "//videos.electroteque.org/subtitles/sintel/sintel_de.vtt",
"srclang": "de"
},
{
"kind": "subtitles",
"label": "French",
"src": "//videos.electroteque.org/subtitles/sintel/sintel_fr.vtt",
"srclang": "fr"
},
{
"kind": "subtitles",
"label": "Italian",
"src": "//videos.electroteque.org/subtitles/sintel/sintel_it.vtt",
"srclang": "it"
}
]
});
</script>