HTML5<视频>Android 上的元素无法播放视频>
像下面这样的视频标签在 iPhone 上可以正常播放,但在 Android 上则不行:
<video id="video" width="320" height="240" poster="video/placeholder.jpg" autobuffer controls>
<source src="pr6.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="pr6.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
使用上面的代码,Android 甚至无法单击该剪辑。它只会看到海报图像。
然而,像下面这样的视频标签可以在 Android 上使用:
<video src="vpr6.mp4" poster="video/placeholder.jpg" onclick="this.play();"/>
但是,我仍然需要多源功能(对于 Firefox ogv 支持......)。下面的代码不起作用(如果我将 javascript 粘贴到源标签中,它们也不起作用):
<video id="video" width="320" height="240" autobuffer controls onclick="this.play();">
<source src="pr6.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="pr6.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
使用上面的代码,该剪辑在 Android 中是可单击的,但仍然不执行任何操作。
有人可以帮忙吗?
Video tags like below plays fine with iPhone, but not Android:
<video id="video" width="320" height="240" poster="video/placeholder.jpg" autobuffer controls>
<source src="pr6.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="pr6.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
With the above code, Android can't even click the clip. It would just see the poster image.
Video tag like below however works with Android:
<video src="vpr6.mp4" poster="video/placeholder.jpg" onclick="this.play();"/>
However, I still need to multiple sources capability (for Firefox ogv support…). Below code does not work (nor do they work if I stick the javascript into the source tags):
<video id="video" width="320" height="240" autobuffer controls onclick="this.play();">
<source src="pr6.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="pr6.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
With above code, the clip is clickable in Android, but still does nothing.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试从源列表中删除编解码器。可能是您列出的编解码器在 Android 上不存在,所以令人窒息。
如果您使用 src 属性,它会自动检测编解码器,因此它使用其他东西:)
Try to remove the codecs from the source listings.. It might be that the codecs you're listing are not present on Android, so it's choking.
If you use the src attribute, it'll auto-detect the codec, so it's using something else :)