app/Services/Streamers/TranscodingStreamerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Services\Streamers;

interface TranscodingStreamerInterface extends StreamerInterface
{
    public function setBitRate(int $bitRate): void;

    public function setStartTime(float $startTime): void;
}