mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
10 lines
222 B
PHP
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;
|
|
}
|