我们正在尝试从输出ffmpeg结果的PHP源执行HTTP Pseudostreaming。
以下是我们用于输出流的代码。如果我直接访问此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>
任何想法都可能出错?
谢谢!
答案 0 :(得分:0)
jwplayer在阅读时遇到了问题(urlencoding特殊字符,如?&amp;)vars格式
最好的方法是在htaccess中为stream.php重写url:
RewriteRule ^stream-video/(.*)/(.*) stream.php?token=$1&file=$2 [QSA,L]
这样你就可以传递文件网址:
http://example.com/stream-video/token-optional/filename-or-id.mp4
希望这会有所帮助..
顺便说一句你通过php和X-Mod-H264-Streaming获得了flv流媒体的运气吗?