视频流 - 处理标题206(php到HTML5)

时间:2016-10-13 21:09:01

标签: http-headers video-streaming html5-video

像往常一样,它永远不适合我...

我尝试播放视频,并且我很好地使用以下代码:

function send_back_video($video_path)
{
    ob_clean();
    $mime = "application/octet-stream"; // The MIME type of the file, this should be replaced with your own.
    $size = filesize($video_path); // The size of the file

    // Send the content type header
    header('Content-type: ' . $mime);

    // Check if it's a HTTP range request
    if(isset($_SERVER['HTTP_RANGE']))
    {       
        // Parse the range header to get the byte offset
        $ranges = array_map(
            'intval', // Parse the parts into integer
            explode(
                '-', // The range separator
                substr($_SERVER['HTTP_RANGE'], 6) // Skip the `bytes=` part of the header
            )
        );

        // If the last range param is empty, it means the EOF (End of File)
        if(!$ranges[1]){
            $ranges[1] = $size - 1;
        }

        // Send the appropriate headers
        header('HTTP/1.1 206 Partial Content');
        header('Accept-Ranges: bytes');
        header('Content-Length: ' . ($ranges[1] - $ranges[0])); // The size of the range

        // Send the ranges we offered
        header(
            sprintf(
                'Content-Range: bytes %d-%d/%d', // The header format
                $ranges[0], // The start range
                $ranges[1], // The end range
                $size // Total size of the file
            )
        );

        // It's time to output the file
        $f = fopen($video_path, 'rb'); // Open the file in binary mode
        $chunkSize = 8192; // The size of each chunk to output

        // Seek to the requested start range
        fseek($f, $ranges[0]);

        // Start outputting the data
        while(true)
        {

            // Check if we have outputted all the data requested
            if(ftell($f) >= $ranges[1])
            {
                break;
            }

            // Output the data
            echo fread($f, $chunkSize);

            // Flush the buffer immediately
            @ob_flush();
            flush();
        }
    }
    else {
        // It's not a range request, output the file anyway
        header('Content-Length: ' . $size);

        // Read the file
        @readfile($file);

        // and flush the buffer
        @ob_flush();
        flush();
    }
}

"所以,如果它有效,你想要什么?" - 你可能会问..

正如我之前所说,代码做得非常好,但有1个问题。

如果我开始播放视频,php发送header('HTTP/1.1 206 Partial Content')并且这个(视频)请求保持打开状态直到EOF,这意味着,即使不想要,我也要强制下载整个视频(让&# 39;我说我点击下一个视频。)

我的JS删除了视频标记(这应该是ABORT请求)并使用新链接创建新的视频标记。 ABORT部分没有发生。

在这里您可以看到GET示例: enter image description here

  1. 1st - 首播视频
  2. 第二个 - 按下播放按钮
  3. 3rd - 导航 - 创建新的DOM项目并等待出现。
  4. 所以我正在寻找的是关闭导航时关闭连接的一些选项。 我看到youtube做了很多GET。据我所知,每一个GET都带来了新的" chunk"以前" chunk"接近尾声。这是一个非常好的选择,但它取消了缓冲,我希望能够缓冲视频。

    P.S。

    当然,我做错了什么,我只是看不出来。

    P.P.S。

    我不是代码的作者。

0 个答案:

没有答案