Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Why does my website video works on Chrome and Safari but not Firefox?

  • 6 replies
  • 2 have this problem
  • 6 views
  • Last reply by cor-el

more options

I just uploaded my website and when I view the site on Chrome or Safari my video works fine. When I look at it on Firefox, the controls for the video are there but there is no picture. It doesn't matter what computer I use to view the site. I used Dreamweaver CC to create the site and I used MP4, OGG, and WEBM, video files as well as a flash backup. The strange thing is that when do a local preview on Firefox within the Dreamweaver program it works just fine.

I just uploaded my website and when I view the site on Chrome or Safari my video works fine. When I look at it on Firefox, the controls for the video are there but there is no picture. It doesn't matter what computer I use to view the site. I used Dreamweaver CC to create the site and I used MP4, OGG, and WEBM, video files as well as a flash backup. The strange thing is that when do a local preview on Firefox within the Dreamweaver program it works just fine.

All Replies (6)

more options

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required)?

Did you check the src attribute of the video and verified that this file is on the server in the specified location?

more options

I'm sorry, I am very new to creating websites. I don't understand your questions.

more options

Here is the code for the video div.

<div id="video">
    <video controls autoplay >
      <source src="Video/MMMFoxNews.mp4" type="video/mp4">
      <source src="Video/MMMFoxNews.ogg" type="video/ogg">
      <source src="Video/MMMFoxNews.webm" type="video/webm">
      <embed src="Video/MMMFoxNews.mp4" type="application/x-shockwave-flash" />    
</video>

Modified by cor-el

more options
   

more options

Apparently you can't put code into a reply. Anyway, I have source src="Video/MMMFoxNews.mp4" type="video/mp4" for each of the different types of video files.

more options

Are all the files in that location on the server and is the server configured to send each of those files with the correct MIME type?

The later is essential because otherwise Firefox will refuse to play a file.

You can check the Browser Console (Firefox/Tools > Web Developer) for errors.

Modified by cor-el