You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 10, 2020. It is now read-only.
To include videojs-flash on your website or web application, use any of the following methods.
<script> Tag
This is the simplest case. Get the script in whatever way you prefer and include the tech after you include video.js, so that the videojs global is available.
When using with Browserify, install videojs-flash via npm and require the tech as you would any other module.
varvideojs=require('video.js');// The actual tech function is registered to video.js automatically; so, there// is no need to assign it to a variable.require('videojs-flash');
RequireJS/AMD
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the tech as you normally would:
By default techs are used in the order in which they are registered. This means that the HTML5 tech that is buildin to video.js is going to be registered first and thus prioritized. To change this you will have to change the techOrder option on video.js. See examples below
NOTE: video.js and flash are already included in these example
Prioritize the flash tech over the HTML5 tech, but fallback to the HTML5 tech if the Flash tech does not work.