koel/app/Services/Streamers/TranscodingStreamerInterface.php

11 lines
222 B
PHP
Raw Normal View History

2018-08-22 19:59:14 +02:00
<?php
namespace App\Services\Streamers;
interface TranscodingStreamerInterface extends StreamerInterface
{
2018-08-24 17:27:19 +02:00
public function setBitRate(int $bitRate): void;
2018-08-29 09:07:44 +02:00
2018-08-24 17:27:19 +02:00
public function setStartTime(float $startTime): void;
2018-08-22 19:59:14 +02:00
}