koel/app/Services/Streamers/TranscodingStreamerInterface.php
2018-08-29 13:15:23 +07:00

9 lines
221 B
PHP

<?php
namespace App\Services\Streamers;
interface TranscodingStreamerInterface extends StreamerInterface
{
public function setBitRate(int $bitRate): void;
public function setStartTime(float $startTime): void;
}