Is there anyway I can place video.js without setting source on video tag? Video.js fails without source when starts.
I want place video.js without source and set sourace from js api later.
same question here but no one answered. VideoJS, without source?
Use preload="none"
on the video element
<video id="my_video" controls preload="none" class="video-js vjs-default-skin" data-setup="{}" />
Then load with the API
videojs("my_video").src([
{ type: "video/mp4", src: "http://vjs.zencdn.net/v/oceans.mp4" },
{ type: "video/webm", src: "http://vjs.zencdn.net/v/oceans.webm" }
]);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With