PHP 中的 VideoStream 外部 URL mp4 文件

VideoStream external URL mp4 file in PHP

请帮我解决这个 VideoStream,因为它不工作。

我有视频link 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;

VideoStream.php 文件

请帮助我处理 html5 视频中的视频流。谢谢。

如果您只想使用 PHP 将视频文件字节提供到 HTML5 <video> 中,请尝试:

(1) index.php:(可以是 index.html)...

<video width="640" height="400" controls>
<source src="stream.php" type="video/mp4">
</video>

(2) stream.php:

<?php
    
    $file = "http://91.121.207.115/downloads/American.Traitor.The.Trial.of.Axis.Sally.007.BR.mp4";
    
    $contents = readfile( $file );
    echo $contents; //# send back to HTML...
    exit;
?>