php 需要帮助选择播放器和格式

发布于 2024-10-13 23:08:19 字数 165 浏览 5 评论 0原文

我需要一名球员&所有桌面/笔记本电脑浏览器都支持的视频格式,甚至在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱殇璃 2024-10-20 23:08:19

您使用 PHP 的事实并不重要,因为 PHP 不进行视频处理。

如果您尝试进行视频处理,最好的选择是安装 ffmpeg,您可以从 PHP 调用它处理视频的脚本。

您可能想要以以下格式存储视频(按可能播放的顺序排列):

  1. FLV,Flash 的视频容器,与 Flash 视频播放器结合使用。这将吸引最大一部分观众。
  2. MPEG4 / H.264 可以在一些没有 F​​lash 的系统中播放,包括 Apple 的设备。请注意,H.264 编解码器受到软件专利和商业许可的负担方案
  3. WebM(有时称为 VP8)很快将在不支持 Flash 或 H.264 的所有其他内容中运行。

对于格式 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:

  1. FLV, Flash's video container, combined with a Flash video player. This will hit the largest chunk of your audience.
  2. MPEG4 / H.264 will play in some systems that don't have Flash, including Apple's devices. Watch out, the H.264 codec is burdened by software patents and a commercial licensing scheme.
  3. WebM (sometimes known as VP8) will soon play in everything else that doesn't support Flash or H.264.

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文