koel/app/Services/Streamers/TranscodingStreamerInterface.php
2018-08-29 09:07:44 +02:00

10 lines
222 B
PHP

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