koel/app/Services/Streamers/TranscodingStreamerInterface.php

11 lines
200 B
PHP
Raw Normal View History

2018-08-22 17:59:14 +00:00
<?php
namespace App\Services\Streamers;
interface TranscodingStreamerInterface extends StreamerInterface
{
public function setBitRate($bitRate);
2018-08-22 17:59:36 +00:00
2018-08-22 17:59:14 +00:00
public function setStartTime($startTime);
}