Paul,
Something very important is that you shouldn't change a .m4v extenxion
to .mov.
M4v, m4a, m4p, etc. are all mp4 files and their extension can be
replaced by mp4. That can help with some device which "understand"
"mp4" but not "m4X". But concerning mov, though both files are very
similar, a mp4 is not a mov.
And since the iPhone is supposed to understand any of those
extensions, there is no need for a modification.
I think your problem is actually the mime-mapping. I reproduced it on
a basic tomcat 5.0. You have to tell it how to handle m4v or mp4 files.
Here is the solution for Tomcat :
Open web.xml in the "conf" folder.
Find the mime-mappings and add these two :
<mime-mapping>
<extension>m4v</extension>
<mime-type>video/mp4</mime-type>
</mime-mapping>
<mime-mapping>
<extension>mp4</extension>
<mime-type>video/mp4</mime-type>
</mime-mapping>
If you work on Apache, it should be in mime.types :
video/mp4 mp4 mp4v mpg4 m4v
I hope that will help. If not, what server is your site on ?
Pierre
Le 4 nov. 08 à 18:27, olicat a écrit :