html5视频参数化源码
你好 我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题可能是 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.