我们正在尝试从从 ffmpeg 输出结果的 PHP 源进行 HTTP 伪流处理。
下面是我们用来输出流的代码。如果我直接访问此 URL (../stream.php),则会下载一个 flv 文件。如果我使用该 flv 文件作为 JW Player 中的源文件,它可以正常工作。但是,当我将 stream.php 作为源时,它不起作用,并且出现错误:“加载播放器时出错:找不到可播放的源”
我们在 stream.php 中使用的代码是:
header("Accept-Ranges: bytes");
header("Content-type: video/flv");
header("X-Mod-H264-Streaming: version=2.2.7");
$cmd = 'ffmpeg -re -i source.mp4 -map_chapters -1 -vcodec:0 copy -b:v:0 885918 -bf:0 2 -threads:0 0 -s:0 720x404 -partitions:0 +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -acodec:1 copy -b:1 104684 -ac:1 2 -ar:1 44100 -f flv -';
if ($handle = popen($cmd, 'r')) {
sleep(3);
echo fread($handle, 8024000);
ob_flush();
while (!feof($handle)){
echo fread($handle, 8024000);
ob_flush();
}
pclose($handle);
}
我们的 JW Player 代码是:
<script type="text/javascript">
jwplayer("myElement").setup({
file : "/stream.php?start=0",
provider : 'http',
'http.startparam' :'start',
flashplayer : '/js/jwplayer.flash.swf',
autostart : 'true',
allowscriptaccess:'always',
modes: [
{type: 'html5'},
{type: 'flash'},
{type: 'download'}
],
height: 270,
width: 480
});
</script>
任何想法这可能有什么问题?
谢谢!