php 需要帮助选择播放器和格式
我需要一名球员&所有桌面/笔记本电脑浏览器都支持的视频格式,甚至在 android 和 iphone 上都支持,服务器基于 PHP
我现在使用的是带有 H.264 的 .mov,它不适用于 android,有时甚至不适用于firefox
帮助表示感谢。
谢谢。
I am in requirement of a player & video format that is supported on all desktop/laptop browser, and even on android and iphone, server is based on PHP
What I am right now using is .mov with H.264, which does not work on android, and sometimes not even in firefox
Help appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用 PHP 的事实并不重要,因为 PHP 不进行视频处理。
如果您尝试进行视频处理,最好的选择是安装 ffmpeg,您可以从 PHP 调用它处理视频的脚本。
您可能想要以以下格式存储视频(按可能播放的顺序排列):
对于格式 2 和 3,您需要查看HTML5 视频标记,该标记适用于所有格式现代浏览器。这些现代浏览器也将方便地支持这两种格式。您需要阅读该链接以获取有关视频处理的更多信息,包括有关使用 ffmpeg 的 WebM 编码的部分和有关移动设备的部分。
(还有 Ogg Theora,但没有人足够喜欢它。)
The fact that you are using PHP is irrelevant because PHP doesn't do video processing.
If you're trying to do video processing, your best bet will be getting ffmpeg installed, which you can call from your PHP script to process video.
You're probably going to want to store videos in the following formats, in order of likely-to-be-playable-hood:
For formats 2 and 3, you'll want to look at the HTML5 video tag, which will work in all modern browsers. Those modern browsers will also conveniently support those two formats. You'll want to read that link for a great deal more information about video handling, including a section on WebM encoding using ffmpeg and sections on mobile devices.
(There's also Ogg Theora, but nobody loves it enough.)