I'm programing a video visor with MediaElement.js
The web retrieves a video from a path, in server side im using PHP to do that.
It works really well in IE, Firefox or Chrome (either Windows or Mac). In Firefox Linux (ver 24.0) it's displaying all the time the gray box with the famous message No video with supported format and MIME type found
.
I tried installing codecs at my CentOS or installing Opera (failed as well, even in Windows). Also I added at the htaccess
the MIME types required.
I don't know what's going on.
<div id="div_video">
<video id="Video1" width="640" height="360" controls="controls" >
<source src="videos/<?php echo $client.'/'.$main_video[2]?>" type="video/mp4" title="mp4" />
</video>
</div>
What I realize is when I'm reproducing a video from the demo in Firefox, IE or Chrome (Windows) it says native
but when I'm reproducing a video in Opera (Windows) it says flash
and is never working at all.
Hope you can help me! Thanks