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);
|
|
|
|
}
|