40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* YoutubeStream class.
|
|
*/
|
|
|
|
namespace Alltube\Stream;
|
|
|
|
use Alltube\Video;
|
|
use GuzzleHttp\Psr7\AppendStream;
|
|
|
|
/**
|
|
* Stream that downloads a video in chunks.
|
|
* This is required because Youtube throttles the download speed on chunks larger than 10M.
|
|
*/
|
|
class YoutubeStream extends AppendStream
|
|
{
|
|
/**
|
|
* YoutubeStream constructor.
|
|
*
|
|
* @param Video $video Video to stream
|
|
*/
|
|
public function __construct(Video $video)
|
|
{
|
|
parent::__construct();
|
|
|
|
$stream = $video->getHttpResponse();
|
|
$contentLenghtHeader = $stream->getHeader('Content-Length');
|
|
$curSize = 0;
|
|
|
|
while ($rangeStart < $contentLenghtHeader[0]) {
|
|
$rangeEnd = $rangeStart + $video->downloader_options->http_chunk_size;
|
|
if ($rangeEnd > $contentLenghtHeader[0]) {
|
|
$rangeEnd = $contentLenghtHeader[0] - 1;
|
|
}
|
|
$response = $video->getHttpResponse(['Range' => 'bytes='.$rangeStart.'-'.$rangeEnd]);
|
|
$this->addStream(new YoutubeChunkStream($response));
|
|
$rangeStart = $rangeEnd + 1;
|
|
}
|
|
}
|
|
}
|