即使我只考虑默认支持 HTML 5 视频的设备,我是否需要一个用于 HTML 5 视频的自定义 JS 播放器?
我正在使用 jquery mobile 制作一个移动网站,我只考虑 iPad、iPhone 和 Android 设备。我不需要 Flash Fallback。
那么制作仅适用于移动设备的视频播放器的最佳方法是什么?我是否必须使用这些 http://praegnanz.de/html5video/ 或仅使用 html 5 视频代码会做。我不需要定制皮肤。最主要的是视频应该能够在 iPad、iPhone 和 Android 上流畅播放。
I'm Making a Mobile website using jquery mobile and I'm only considering iPad, iPhone and Android device. I don't need Flash Fallback.
Then what is the best method to make video player only for mobile? Do i have to use any of these http://praegnanz.de/html5video/ or only html 5 video code will do. I don't need custom skin. Main thing is video should be smoothly played on iPad, iphone and Android.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不一定非得使用这些视频库之一;您可以使用 HTML5 视频元素,它允许您通过 CSS 设置控件样式并指定后备(包括 flash 和 silverlight)。
需要考虑的主要问题是 iPhone、iPad 和 Android 上的每个移动浏览器支持哪些视频编解码器。
在标签之间,您可以指定要后备的多种视频格式。
我在 iPhone 和 iPad 上测试了这个,它可以使用 HTML5 视频元素播放视频:
iOS 将支持 mp4,但我不是 Android 专家,所以我发现这篇文章详细介绍了通过 html5 视频元素在 Android 上播放的视频编码: 为 Android 编码视频
You don't necessarily have to use one of those video libraries; you can use the HTML5 video element which allows you to style the controls via CSS and specify fallbacks (including flash and silverlight).
The main thing to consider will be what video codecs each mobile browser on iphone, ipad and android supports.
In between the tags, you can specify multiple video formats to fallback on.
I tested this on iphone and ipad and it could play the video using the HTML5 video element:
iOS will support mp4 but i'm not an Android expert so i found this post that details encoding video that will play on Android via the html5 video element: Encoding Video For Android