koel/app/Services/Streamers/TranscodingStreamerInterface.php
2018-08-22 19:59:36 +02:00

10 lines
200 B
PHP

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