【发布时间】:2021-06-01 06:09:07
【问题描述】:
请帮我处理这个 VideoStream,因为它不起作用。
我有视频链接 http://91.121.207.115/downloads/American.Traitor.The.Trial.of.Axis.Sally.007.BR.mp4
但它不能在正常的 html5 视频中播放
然后我来到这里,它工作正常。 https://codesamplez.com/programming/php-html5-video-streaming-tutorial
我已经尽力了,但还是不行。
index.php
<video width="320" height="240" controls>
<source src="stream.php" type="video/mp4">
</video>
stream.php
include "VideoStream.php";
$stream = new VideoStream("http://91.121.207.115/downloads/American.Traitor.The.Trial.of.Axis.Sally.007.BR.mp4");
$stream->start();exit;
请帮助我在 html5 视频中处理该视频流。谢谢。
【问题讨论】:
标签: php video-streaming html5-video mp4