@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 908 B
TypeScript
/**
* @export
* @class LiveAutoShutdownConfiguration
*/
export declare class LiveAutoShutdownConfiguration {
/**
* Automatically shutdown the live stream if there is no input anymore for a predefined number of seconds.
* @type {number}
* @memberof LiveAutoShutdownConfiguration
*/
bytesReadTimeoutSeconds?: number;
/**
* Automatically shutdown the live stream after a predefined runtime in minutes.
* @type {number}
* @memberof LiveAutoShutdownConfiguration
*/
streamTimeoutMinutes?: number;
/**
* Automatically shutdown the live stream if input is never connected for a predefined number of minutes.
* @type {number}
* @memberof LiveAutoShutdownConfiguration
*/
waitingForFirstConnectTimeoutMinutes?: number;
constructor(obj?: Partial<LiveAutoShutdownConfiguration>);
}
export default LiveAutoShutdownConfiguration;