1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-06-30 08:00:57 +02:00
alltube/classes/streams/ConvertedPlaylistArchiveStream.php
Pierre Rudloff 71d49ad74f Lint
2020-05-13 21:18:32 +02:00

37 lines
768 B
PHP

<?php
/**
* ConvertedPlaylistArchiveStream class.
*/
namespace Alltube\Stream;
use Alltube\Video;
use Exception;
use Slim\Http\Stream;
/**
* Class used to create a Zip archive from converted playlists entries.
*/
class ConvertedPlaylistArchiveStream extends PlaylistArchiveStream
{
/**
* Start streaming a new video.
*
* @param Video $video Video to stream
*
* @return void
* @throws Exception
*/
protected function startVideoStream(Video $video)
{
$this->curVideoStream = new Stream($video->getAudioStream());
$this->init_file_stream_transfer(
$video->getFileNameWithExtension('mp3'),
// The ZIP format does not care about the file size.
0
);
}
}