UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 520 B
import SrtInput from './SrtInput'; /** * @export * @class BackupSrtInputs */ export declare class BackupSrtInputs { /** * When there is no input signal present for this number of seconds, the encoder will switch to the next input * @type {number} * @memberof BackupSrtInputs */ delayThreshold?: number; /** * @type {SrtInput[]} * @memberof BackupSrtInputs */ srtInputs?: SrtInput[]; constructor(obj?: Partial<BackupSrtInputs>); } export default BackupSrtInputs;