html5视频参数化源码

发布于 2024-10-16 20:07:51 字数 430 浏览 0 评论 0原文

你好 我有这个 html 视频标签:

<video id="asdasd" width="320" height="240" controls preload>
    <source src="getVideo.php?video=some.mp4" type="video/mp4">
 </video>

getVideo.php 的位置:

<?php
echo file_get_contents($drivepath.$_GET['video']);
?>

我在 chrome 和 safari 上尝试过,它可以工作,但在 ipad 上不起作用。 我怎样才能在ipad上完成这个工作?有没有办法使视频 src 参数化,而不直接给出文件路径? 谢谢大家。

Hello
I have this html video tag:

<video id="asdasd" width="320" height="240" controls preload>
    <source src="getVideo.php?video=some.mp4" type="video/mp4">
 </video>

Where getVideo.php is:

<?php
echo file_get_contents($drivepath.$_GET['video']);
?>

I tried this on chrome and safari and it works, but it doesn't work on ipad.
How can I make work this on ipad? Is there a way to make video src parametrized, without giving the file path directly?
Thanks all.

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

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

发布评论

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

评论(1

微凉 2024-10-23 20:07:51

问题可能是 MP4 的编码。 (如果没有问题文件的链接,很难权威地说。)苹果设备对于它们能播放和不能播放的内容非常挑剔。

解决方案:使用 h264 Baseline Profile 3.0 对视频进行编码

从技术上讲,iPad 可以支持 h264 Main Profile 3.1,但这不包括 iPhone。

The problem is probably the encoding of the MP4. (Hard to say with authority without a link to your problem file.) Apple devices are very particular about what they will and will not play.

The solution: Encode the video with h264 Baseline Profile 3.0

Technically the iPad can support h264 Main Profile 3.1, but that won't cover iPhones.

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