HTML 5 视频问题

发布于 2024-09-10 08:25:48 字数 602 浏览 5 评论 0原文

我正在尝试将我的网站设置为使用 HTML 5 视频。 mp4 文件由 S3 提供。我的 MIME 类型是正确的,并且 URL 也是正确的。但它不起作用。我唯一能想到的是编解码器错误。

这是我的代码:

<video width="320" height="240" controls>
<source src="{url}"  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>

现在据我了解,音频编解码器始终相同。 mp4a.40.2。视频被编码为基线,但根据 http://wiki.whatwg.org/ wiki/Video_type_parameters#MPEG-4,视频编解码器的最后两个字符,在我的代码 1E 中是可变的。

字符错误是否足以导致视频无法播放?如果是这样,我如何找到正确的设置?

我很难理解这些东西。感谢您提供的任何帮助。

I'm trying to set up my site to use HTML 5 videos. The mp4 files are served from S3. I've got the MIME type right, and the URL is right. It's not working though. The only thing I can think of is the codec being wrong.

Here is my code:

<video width="320" height="240" controls>
<source src="{url}"  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>

Now as I understand it, the audio codec is always the same. mp4a.40.2. The video is encoded as baseline, but according to http://wiki.whatwg.org/wiki/Video_type_parameters#MPEG-4, the last two characters of the video codec, in my code 1E are variable.

Is having the wrong characters enough to cause the video to not work? If so, how do I find the right settings?

I'm having a hard time wrapping my head around this stuff. Thanks for any help you can provide.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

最近可好 2024-09-17 08:25:48

视频编解码器信息的想法是,如果您的浏览器无法播放视频,则不会下载该视频。 (在这里发现)所以我认为即使有一个错误但常见的 avc 级别(最后 2 个字符) )它应该下载并播放。
我找到了本指南如何使用十六进制编辑器确定和更改您的 avc 级别。 Megui 显然也适用于此。

The idea of the video codecs information is that your browser won't download the video if it can't play it. (found that here) So I think even with a wrong, but common, avc level (last 2 chars) it should download and play.
I found this guide how to determine and change your avc level using a hex editor. Megui apparently also works for that.

压抑⊿情绪 2024-09-17 08:25:48

尝试删除 type 属性。如果这样行得通,那么你就发现了问题。另外,检查实际的 Content-Type HTTP 标头。

Try removing the type attribute. If that makes it work, you've found the problem. Also, check the actual Content-Type HTTP header.

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