@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
35 lines (34 loc) • 1.29 kB
TypeScript
import InputStream from './InputStream';
import InputStreamType from './InputStreamType';
/**
* @export
* @class TimecodeTrackTrimmingInputStream
*/
export declare class TimecodeTrackTrimmingInputStream extends InputStream {
/**
* Discriminator property for InputStream
* @type {string}
* @memberof TimecodeTrackTrimmingInputStream
*/
readonly type: InputStreamType;
/**
* The id of the ingest input stream that should be trimmed (required)
* @type {string}
* @memberof TimecodeTrackTrimmingInputStream
*/
inputStreamId?: string;
/**
* Defines the timecode, in SMPTE-12M format, of the frame from which the encoding should start. The frame indicated by this value will be included in the encoding (required)
* @type {string}
* @memberof TimecodeTrackTrimmingInputStream
*/
startTimeCode?: string;
/**
* Defines the timecode, in SMPTE-12M format, of the frame at which the encoding should stop. The frame indicated by this value will be included in the encoding (required)
* @type {string}
* @memberof TimecodeTrackTrimmingInputStream
*/
endTimeCode?: string;
constructor(obj?: Partial<TimecodeTrackTrimmingInputStream>);
}
export default TimecodeTrackTrimmingInputStream;