我网站 Monsterfilms.com 上的视频无法在 Apple 设备上播放。为什么?
Videos on my website Monsterfilms.com are not playing on Apple devices. Why?
我使用的是 django,所以我的模板如下所示:
<video playsinline autoplay muted loop poster="{{page.image.url}}" id="bgvid">
<source src="{{page.video.url}}" type="video/mp4">
</video>
这些视频在 Linux 和 Microsoft 上运行良好,但在 Apple 设备上运行不佳。为什么?
您如何提供视频文件?如果您使用 Django 的内置服务器,您会发现由于 Django 的服务器不支持字节范围请求,视频将无法加载。请参阅此主题:
https://groups.google.com/forum/#!msg/django-developers/NZ1qTkZ6vok/fhdz7rTtL1EJ
还有这张票:
恐怕答案很平凡。我试过使用不同的视频编辑软件将视频渲染为 h.264 编解码器,现在可以使用了。我使用的软件似乎不适合 Apple?
我使用的是 django,所以我的模板如下所示:
<video playsinline autoplay muted loop poster="{{page.image.url}}" id="bgvid">
<source src="{{page.video.url}}" type="video/mp4">
</video>
这些视频在 Linux 和 Microsoft 上运行良好,但在 Apple 设备上运行不佳。为什么?
您如何提供视频文件?如果您使用 Django 的内置服务器,您会发现由于 Django 的服务器不支持字节范围请求,视频将无法加载。请参阅此主题:
https://groups.google.com/forum/#!msg/django-developers/NZ1qTkZ6vok/fhdz7rTtL1EJ
还有这张票:
恐怕答案很平凡。我试过使用不同的视频编辑软件将视频渲染为 h.264 编解码器,现在可以使用了。我使用的软件似乎不适合 Apple?