Disable Flash In Video.js
How can i prevent video.js to not use flash anymore ? I mean i only need it to run if the browser supports HTML5. The fact that i am using Drupal it should not be a problem with co
Solution 1:
Override the techOrder to include only HTML5. Add this to the data-setup attribute of the video tag:
<video … data-setup='{"techOrder": ["html5"]}'>
Post a Comment for "Disable Flash In Video.js"