I have converted my video to .mp4
and .webm
formats for use on the web. As from my understanding Firefox doesn't support .mp4
but its does support .webm
This means having both should support all browsers.
I have the following HTML to display my video,
<video width="100%" height="auto" controls>
<source src="6-steps-to-becoming-an-elite-internet-marketer\_\video\mp4\part-0-t4ej1dbeuk.mp4" type="video/mp4">
<source src="6-steps-to-becoming-an-elite-internet-marketer\_\video\webm\part-0-t4ej1dbeuk.webm" type="video/webm">
Oppps! Your browser appears to not be able to play this video. Please update it!
</video>
It works in Chrome, IE and Safari however not in Firefox.
I get the error message "No Video with supported format and MME type found"
I've added the following into my .htaccess to support all types.
# HTML5 video to work in all browsers
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm
I've spent hours on this very issue but just having no luck.