Skip to content Skip to sidebar Skip to footer

Issue With The Flash Fallback Of Videojs With Firefox

I have try to add videoJs to my site to play MP4 files, all works perfectly in Chrome but when I go to Firefox (which doesn't support MP4 files) the flash player stay on a black sc

Solution 1:

A few things to try here:

  1. Make sure you're loading the video-js css file.
  2. Add the "video-js" and skin classes to your video object as described here (also, it is "controls", not "control"): https://github.com/videojs/video.js/blob/0020ba15b9ae2b60e51d4d8d2751ffa31d18694d/docs/guides/setup.md
  3. If you're loading video js from the CDN, you don't need to set the flash.swf option. That may be causing an issue as well.

You shouldn't need to set the techOrder to get Firefox to behave, and you definitely don't need a corresponding video file for each type of "Tech". Flash will play the fallback in mp4 as long as it's above version 9 or so.

I did run into an issue on Firefox where the Flash fallback would play the video but the video would be blank (audio would play) when I included a "ready" event. I was able to get around this by firing a blur event on the $(this) object. That may be helpful to you if you need to use ready.

Solution 2:

You need a flv Version of your Video when you want to deliver it through flash. It could be usefull to offer another webm Version of your Video. This should bei played in Firefox and Chrome.

For every Tech you need the correspondenting videofile.

Post a Comment for "Issue With The Flash Fallback Of Videojs With Firefox"