koel/app/Services/Streamers/TranscodingStreamerInterface.php

11 lines
222 B
PHP
Raw Normal View History

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