h264的mp4视频在ios6能播放但是在ios5不能播放的问题

问题:
同一个视频,h264的编码。在IOS6不能播放在IOS5不能播放。

原因:
由于我将video的src进行了二次映射达到加密的作用。
<video id="video"   src="/Lib/Action/Portal/url.mp4?t={$random}"
					preload="auto"  controls type="video/mp4"  
					class="videoplayer" width="{$fileWidth}" 
					height="{$fileHeight}" poster="{$poster}">
					This browser does not support the video tag.
				</video>


url.mp4其实是个php文本。

在IE10下按F12打开控制台->网络,可以看到该video的SRC地址的MIME是text/html。


而IOS5不会自动识别MIME非video/mp4的格式的video,因此不能播放。Ios6就可以了。

参考资料:
<HTML5 Video not working in IE9 - Some tips to debug>
http://blogs.msdn.com/b/thebeebs/archive/2011/07/20/html5-video-not-working-in-ie9-some-tips-to-debug.aspx

你可能感兴趣的:(iOS6)