HTACCESS file with mp4 to webm converter
I have heard that the MIME types setting in a htaccess file is required in order to run HTML5 videos on Apache servers. Where can I find the htaccess file with mp4 to webm converter?
Unfortunately, the mp4 to webm converter will not generate this file. However you can manually create it. You can create a file called .htaccess file with the following text and upload it to your website root directory:
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm
You can refer to this online tutorial for more: HTML5 MIME types setup on apache servers.
