0

我正在尝试获取一个在 Android 2.1 上运行的 html5 演示页面,已经尝试了 2.1 的 droid 和 nexus 之一,但它们只显示海报图像,不播放视频。按下视频没有任何作用。 编辑 - 使用视频标签上的 onclick 处理程序解决

这个时候android 2.1浏览器可以用html5视频吗?我的演示页面适用于 iphone 和 ipad。

mp4 视频:avc1、29.97 fps、380 kbps、480 x 370 音频:mp4a、44 kHz、64 kbps

以下是页面的编写方式:

<!DOCTYPE html>
<html><head><title>html5 test</title></head><body>
<video id="movie" width="480" height="370" poster="http://example.com/still.jpg" controls>
<source src="http://example.com/video.mp4" type="video/mp4">
Your browser does not support html5 video.
</video>
</body></html>
4

2 回答 2

2

更新:在 Android 2.1 中,我可以通过onclick="this.play();在视频标签中添加这样的视频来播放视频,但不能在页面中播放:

<!DOCTYPE html>
<html><head><title>html5 test</title></head><body>
<video id="movie" width="480" height="370" poster="http://example.com/still.jpg" controls onclick="this.play();">
<source src="http://example.com/video.mp4" type="video/mp4">
Your browser does not support html5 video.
</video>
</body></html>

但是,这不会在浏览器中播放,它会启动媒体播放器以在自己的窗口中播放视频。

于 2010-06-23T15:47:02.860 回答
0

不,Android 浏览器目前不支持 HTML5。

于 2010-04-06T22:56:38.880 回答