user962206
user962206

Reputation: 16117

Disabling Flash fallback option in mediaelement.js

I'm working with MediaElement.js, and would like to disable the option where browsers without HTML5 <video> support get redirected to a Flash fallback. Unfortunately, despite looking over the docs, I haven't found a way to do so. If it can be done, how does one disable the Flash fallback option?

Upvotes: 1

Views: 686

Answers (1)

Teddy
Teddy

Reputation: 18572

new MediaElement('player1', {
  // remove or reorder to change plugin priority
  plugins: ['silverlight']
});

Upvotes: 1

Related Questions