from google search
I was having the same problem with Firefox 12.0 on a Windows 7 system. It'd play on localhost but not on the remote server. Seemed to be hanging up on the GET for the .webm copy of the video. I added an .htaccess file to the site root on the remote server with the following AddType directives:
AddType video/mp4 mp4
AddType video/webm webm
AddType video/ogg ogv
Seems to have done the trick. It's playing now from the remote server in Firefox 12.0, as well as IE8, Chrome19, and Safari5.
|