在HTTP流式传输期间同时进行AJAX调用

时间:2012-08-21 13:47:38

标签: ajax apache streaming jwplayer

我有一台运行Web应用程序的Apache服务器。在这个Web应用程序中,我使用JWPlayer显示视频。 JWPlayer使用http伪流来从提供此视频的PHP脚本中获取视频。所有这一切都很好,视频流畅。

我遇到的问题是在视频流式传输时我还使用AJAX调用来获取一些XML文件,这些文件在同一页面上由Adobe Flash文件使用。流式传输这些XML文件提取时保持等待'直到加载整个视频。使用Chrome我可以看到视频逐字节加载。视频完全加载后,将获取XML文件。此外,如果我在浏览器中打开另一个选项卡,同时视频流式传输并尝试再次加载Web应用程序,则在视频完全加载之前也不会显示。

这似乎是某种Apache设置。 apache的MPM设置为:

    ThreadsPerChild 150     MaxRequestsPerChild 0

这似乎是正确的。什么想法可能是错的?

2 个答案:

答案 0 :(得分:2)

如果您正在使用PHP会话,那么这可能是导致IO阻塞的原因。

php blocking when calling the same file concurrently

答案 1 :(得分:0)

我正在制作一个私有视频流系统。所以,我需要通过php进行流式传输,因为使用php编程我能够重新启动用户访问。

我在流式传输视频和在服务器上执行其他脚本时遇到了麻烦。 使用session_write_close()解决问题,打开另一个脚本,我发现网上的脚本可以帮助我太多。

我想分享,因为该脚本可以实现真正的流式传输。 我在http://www.tuxxin.com/php-mp4-streaming/网站上找到了它。 全部归功于此代码的作者= D

享受!

<?php
$file = 'video360p.mp4';
$fp = @fopen($file, 'rb');
$size   = filesize($file); // File size
$length = $size;           // Content length
$start  = 0;               // Start byte
$end    = $size - 1;       // End byte
header('Content-type: video/mp4');
//header("Accept-Ranges: 0-$length");
header("Accept-Ranges: bytes");
if (isset($_SERVER['HTTP_RANGE'])) {
    $c_start = $start;
    $c_end   = $end;
    list(, $range) = explode('=', $_SERVER['HTTP_RANGE'], 2);
    if (strpos($range, ',') !== false) {
        header('HTTP/1.1 416 Requested Range Not Satisfiable');
        header("Content-Range: bytes $start-$end/$size");
        exit;
    }
    if ($range == '-') {
        $c_start = $size - substr($range, 1);
    }else{
        $range  = explode('-', $range);
        $c_start = $range[0];
        $c_end   = (isset($range[1]) && is_numeric($range[1])) ? $range[1] : $size;
    }
    $c_end = ($c_end > $end) ? $end : $c_end;
    if ($c_start > $c_end || $c_start > $size - 1 || $c_end >= $size) {
        header('HTTP/1.1 416 Requested Range Not Satisfiable');
        header("Content-Range: bytes $start-$end/$size");
        exit;
    }
    $start  = $c_start;
    $end    = $c_end;
    $length = $end - $start + 1;
    fseek($fp, $start);
    header('HTTP/1.1 206 Partial Content');
}
header("Content-Range: bytes $start-$end/$size");
header("Content-Length: ".$length);
$buffer = 1024 * 8;
while(!feof($fp) && ($p = ftell($fp)) <= $end) {
    if ($p + $buffer > $end) {
        $buffer = $end - $p + 1;
    }
    set_time_limit(0);
    echo fread($fp, $buffer);
    flush();
}
fclose($fp);
exit();
?>