HTML 5: Video Setup

From TechMentor

<google uid="C01"></google>

Configuring Your Server

Your web server needs to be configured with the proper mime types. With Apache, this is done by adding the following lines to the .htaccess file in the root folder of your website.

AddType video/mp4  mp4 m4v
AddType audio/mp4  m4a
AddType video/ogg  ogv
AddType audio/ogg  ogg oga
AddType video/webm webm

<google uid="C02"></google>