@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
30 lines (29 loc) • 936 B
TypeScript
import Output from './Output';
import OutputType from './OutputType';
/**
* Live Media and Metadata Ingest Protocol. See https://tools.ietf.org/html/draft-mekuria-mmediaingest-01.
* @export
* @class LiveMediaIngestOutput
*/
export declare class LiveMediaIngestOutput extends Output {
/**
* Discriminator property for Output
* @type {string}
* @memberof LiveMediaIngestOutput
*/
readonly type: OutputType;
/**
* URL specifying the publishing point for the output. Can use either http or https. (required)
* @type {string}
* @memberof LiveMediaIngestOutput
*/
publishingPoint?: string;
/**
* Enable passthrough of SCTE-35 messages from input to output. Default is false.
* @type {boolean}
* @memberof LiveMediaIngestOutput
*/
scte35Passthrough?: boolean;
constructor(obj?: Partial<LiveMediaIngestOutput>);
}
export default LiveMediaIngestOutput;