Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Can't play m4v videos in Firefox.

  • 6 ответов
  • 12 имеют эту проблему
  • 204 просмотра
  • Последний ответ от eli0damon

more options

Hello. I was hoping that someone could help me with a problem. I have an html presentation for a course I teach. (I did not create the presentation.) It includes m4v videos and I cannot get them to play in Firefox. It says "No video with supported format and MIME type found. I can play the videos if I open them externally, but I need it to work in the presentation. Please help. Thank you.

Hello. I was hoping that someone could help me with a problem. I have an html presentation for a course I teach. (I did not create the presentation.) It includes m4v videos and I cannot get them to play in Firefox. It says "No video with supported format and MIME type found. I can play the videos if I open them externally, but I need it to work in the presentation. Please help. Thank you.

Выбранное решение

Firefox can't play files with the .m4v file extension via the audio or video tag as those are not one of the supported file extensions. You can only play such files via the object tag to make Firefox use a plugin that supports this file extension. You can force to use a specific plugin by specifying a type (type="application/x-mplayer2").

<object data="file://<path to file>" type="<to force a specific plugin>"></object>
Прочитайте этот ответ в контексте 👍 0

Все ответы (6)

more options

"No video with supported format and MIME type found" error message means that Firefox wants to use the HTML5 media player to play the file and that the server doesn't send one of the possible with a supported MIME (content) type.

more options

Thanks for responding. I'm sorry, I don't understand. The creator intended them to be playable with the HTML5 player, and others have been able to play them. Also, there is no server. The files are on my local machine.

more options

Is the m4v file a playlist file that has the addresses (URLs) of other files that need to be played?

Are all those files also local files and do they at least have a supported file extension?

more options

There's no playlist, just individual videos. They are all local (although there is an online version that gives me the same problem.

more options

Выбранное решение

Firefox can't play files with the .m4v file extension via the audio or video tag as those are not one of the supported file extensions. You can only play such files via the object tag to make Firefox use a plugin that supports this file extension. You can force to use a specific plugin by specifying a type (type="application/x-mplayer2").

<object data="file://<path to file>" type="<to force a specific plugin>"></object>