mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
10 lines
200 B
PHP
10 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamers;
|
|
|
|
interface TranscodingStreamerInterface extends StreamerInterface
|
|
{
|
|
public function setBitRate($bitRate);
|
|
|
|
public function setStartTime($startTime);
|
|
}
|