为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Does Firefox support .mp4 video?

  • 3 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 WoodyFF

more options

On page https://support.mozilla.org/en-US/kb/html5-audio-and-video-firefox?redirectslug=viewing-html5-audio-and-video&redirectlocale=en-US

I find "AAC and H.264/MPEG-4 AVC are patented audio/video compression formats. They can be viewed in Firefox using built-in OS libraries (so neither Mozilla nor you need to pay a fee) if embedded in the MP4 container format (.mp4, .m4a, .m4p, .m4b, .m4r, .m4v file types)."

But when I create an HTML page with the following HTML5 code:

<!DOCTYPE html>
<html>
<body>
</body>
This is a test of video.
<video src="C:/MyVideoFile.mp4" controls>
</video>
</html>

I get the error "No video with supported format and MIME type found". Does Firefox in fact support .mp4 video? If so, what changes do I need to make in the HTML?

On page https://support.mozilla.org/en-US/kb/html5-audio-and-video-firefox?redirectslug=viewing-html5-audio-and-video&redirectlocale=en-US I find "AAC and H.264/MPEG-4 AVC are patented audio/video compression formats. They can be viewed in Firefox using built-in OS libraries (so neither Mozilla nor you need to pay a fee) if embedded in the MP4 container format (.mp4, .m4a, .m4p, .m4b, .m4r, .m4v file types)." But when I create an HTML page with the following HTML5 code: <pre><nowiki><!DOCTYPE html> <html> <body> </body> This is a test of video. <video src="C:/MyVideoFile.mp4" controls> </video> </html></nowiki></pre> I get the error "No video with supported format and MIME type found". Does Firefox in fact support .mp4 video? If so, what changes do I need to make in the HTML?

由cor-el于修改

被采纳的解决方案

After further experimentation, the error is due to the path in src. It should be either

<video src="file://C:/MyVideoFile.mp4" controls>

OR

<video src="MyVideoFile.mp4" controls>
if the .mp4 is in the same directory as the HTML file (other relative paths are possible)
定位到答案原位置 👍 0

所有回复 (3)

more options

EDIT: The sample HTML I included got rendered (and there is no such file as MyVideo.mp4). Here it is again, replacing angle brackets with square brackets for visibility: [!DOCTYPE html] [html] [body] /body This is a test of video. [video src="C:/MyVideoFile.mp4" controls] /video /html

more options

See if this helps: Separate Security Issue: Update your Flash Player or remove it using these links; Uninstall Flash Player | Windows {web link} Uninstall Flash Player | Mac {web link}

Note: Windows users should download the ActiveX for Internet Explorer. and the plugin for Plugin-based browsers (like Firefox).

Note: Windows 8 and Windows 10 have built-in flash players and Adobe will cause a conflict. Install the plugin only. Not the ActiveX.

Flash Player Version: 32.0.0.344

https://get.adobe.com/flashpl.183ayer/ Direct link scans current system and browser Note: Other software is offered in the download. <Windows Only>

https://get.adobe.com/flashplayer/otherversions/ Step 1: Select Operating System Step 2: Select A Version (Firefox, Win IE . . . .) Note: Other software is offered in the download. <Windows Only> +++++++++++++++++++++++++++++++++++ See if there are updates for your graphics drivers https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration

more options

选择的解决方案

After further experimentation, the error is due to the path in src. It should be either

<video src="file://C:/MyVideoFile.mp4" controls>

OR

<video src="MyVideoFile.mp4" controls>
if the .mp4 is in the same directory as the HTML file (other relative paths are possible)