Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 6 trả lời
  • 2 gặp vấn đề này
  • 10 lượt xem
  • Trả lời mới nhất được viết bởi 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.

Tất cả các câu trả lời (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>

Được chỉnh sửa bởi cor-el vào

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.

Được chỉnh sửa bởi cor-el vào