2019-04-22 18:20:04 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* YoutubeStream class.
|
|
|
|
*/
|
|
|
|
|
2019-04-22 19:06:05 +00:00
|
|
|
namespace Alltube\Stream;
|
2019-04-22 18:20:04 +00:00
|
|
|
|
2019-04-22 19:06:05 +00:00
|
|
|
use Alltube\Video;
|
2019-04-22 18:20:04 +00:00
|
|
|
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();
|
2019-04-22 19:55:45 +00:00
|
|
|
$contentLenghtHeader = $stream->getHeader('Content-Length');
|
2019-04-22 18:20:04 +00:00
|
|
|
$curSize = 0;
|
2019-04-22 19:55:45 +00:00
|
|
|
|
|
|
|
while ($rangeStart < $contentLenghtHeader[0]) {
|
|
|
|
$rangeEnd = $rangeStart + $video->downloader_options->http_chunk_size;
|
|
|
|
if ($rangeEnd > $contentLenghtHeader[0]) {
|
|
|
|
$rangeEnd = $contentLenghtHeader[0] - 1;
|
2019-04-22 18:20:04 +00:00
|
|
|
}
|
2019-04-22 19:55:45 +00:00
|
|
|
$response = $video->getHttpResponse(['Range' => 'bytes='.$rangeStart.'-'.$rangeEnd]);
|
2019-04-22 18:20:04 +00:00
|
|
|
$this->addStream(new YoutubeChunkStream($response));
|
2019-04-22 19:55:45 +00:00
|
|
|
$rangeStart = $rangeEnd + 1;
|
2019-04-22 18:20:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|