我无法在 iPad 上播放一些 MP4 视频。以下适用于 Chrome 和 IE9(添加了元标记),但不适用于我的 iPad。
我读过一些帖子,建议并非所有 MP4 视频都可以在 iPad 上播放,但实际上我从内部创建的 iOS 应用程序中提取了这些 MP4 视频,它们可以正常播放。我正在处理很多视频,所以我不想转换它们,除非我真的必须这样做。
如果他们可以在本机应用程序中播放,他们可以在浏览器中使用 HTML5 播放,是否有意义?
在此先感谢您的任何建议。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- the following line is required for the video to play in IE9 -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Video Test</title>
</head>
<body>
<video id="videoContent" controls="true" autobuffer height="200" width="400">
<source src="video.mp4" type="video/mp4"/>
</video>
</body>
</html>
顺便说一句,我使用的是 iPad 2 和 iOS6。