Html5视频流服务器要求

时间:2015-11-20 18:20:31

标签: html5 video server video-streaming

我正在使用html5视频标签在html5中开发一个流媒体网站,我想知道我需要什么样的服务器才能以每秒4Mbsp的速率支持100个同步和不同的视频流。 还有什么样的硬盘或团队或者我需要做到这一点。 我还需要记住,系统需要可扩展。 我看过AWS,但看起来很贵...... 谢谢你的到来。

2 个答案:

答案 0 :(得分:2)

视频流方案中的繁重工作通常由CDN完成,CDN针对此角色进行了大量优化。你想购买这项服务,而不是建立它; David绝对正确的是,构建,优化和维护自己的基础架构将非常昂贵。 CDN将大量资源投入到工程解决方案中,以解决向不同地点快速提供大量数据的问题。一句话:如果你以牺牲亚马逊的服务为代价,你就无法设计自己的高性能边缘/原始架构。

一些大牌CDN包括Akamai,Amazon Cloudfront,Level3,BitGravity,Edgecast和LimeLight。尝试联系他们的销售部门,看看是否有人愿意为你做一笔好交易。

答案 1 :(得分:0)

使用此代码在ios中播放视频

<?
$file="abc.mp4";
@fread($file);
$file = $play;
$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");
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();


}
?>