伪流媒体

时间:2012-11-06 07:22:58

标签: php pseudo-streaming

我目前测试脚本是一个用于读取mp4文件的伪流,当我阅读一切正常时,但是我无法移动时间轴?问题? 我的编码(mp4元数据)是正确的,因为当在播放器中没有此代码的情况下阅读时,我可以在时间轴中移动。我使用fplayer来读取mp4。

    // ----- NO CACHE -----
session_cache_limiter('nocache');

// General header for no caching
$now = gmdate('D, d M Y H:i:s') . ' GMT';
header('Expires: ' . $now); // rfc2616 - Section 14.21
header('Last-Modified: ' . $now);
header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0

// ----- Seek position -----
$seekat = 0;
if (isset($_GET["pos"])) {
    $position = $_GET["pos"];
    if (is_numeric ($position)) {
        $seekat = $position;
    }
    if ($seekat < 0) $seekat = 0;
}

$filename = 'test.mp4'; 
$ext = strrchr($filename, ".");
$prefix = "";
$file = $prefix . $filename;
if (($filename != "") && (file_exists($file)) && ($ext==".mp4")) {
    header("Content-Type: video/x-mp4");
    if ($seekat > 0) header('Content-Length: ' . (filesize($file)-$seekat));
    else header('Content-Length: ' . filesize($file));

    if ($seekat != 0) {
        print("FLV");
        print(pack('C', 1 ));
        print(pack('C', 1 ));
        print(pack('N', 9 ));
        print(pack('N', 9 ));
    }
    $fh = fopen($file, "rb");
    fseek($fh, $seekat);
    while (!feof($fh)) {
        print (fread($fh, 16384));
        // print (fread($fh, filesize($file)));
    }
    fclose($fh);
}

你能帮我谢谢吗。

1 个答案:

答案 0 :(得分:0)

header("Content-Type: video/x-mp4");

我目前使用相同的代码,但即使我流式传输mp4,我也要将标题内容与flv一起使用

Content-Type: video/x-flv

希望它会有所帮助