@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 514 B
TypeScript
/**
* The segmenting configuration for this WebVTT sidecar file. If this is set, the given vtt file will be chunked.
* @export
* @class WebVttSidecarFileSegmentation
*/
export declare class WebVttSidecarFileSegmentation {
/**
* The length of the WebVTT fragments in seconds (required)
* @type {number}
* @memberof WebVttSidecarFileSegmentation
*/
segmentLength?: number;
constructor(obj?: Partial<WebVttSidecarFileSegmentation>);
}
export default WebVttSidecarFileSegmentation;