UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

31 lines (30 loc) 970 B
import BitmovinResource from './BitmovinResource'; import CaptionCharacterEncoding from './CaptionCharacterEncoding'; import Cea608ChannelType from './Cea608ChannelType'; import InputPath from './InputPath'; /** * @export * @class SrtToCea608708Caption */ export declare class SrtToCea608708Caption extends BitmovinResource { /** * Input location of the SRT file (required) * @type {InputPath} * @memberof SrtToCea608708Caption */ input?: InputPath; /** * The channel number to embed the CEA subtitles in (required) * @type {Cea608ChannelType} * @memberof SrtToCea608708Caption */ ccChannel?: Cea608ChannelType; /** * Character encoding of the input SRT file (required) * @type {CaptionCharacterEncoding} * @memberof SrtToCea608708Caption */ characterEncoding?: CaptionCharacterEncoding; constructor(obj?: Partial<SrtToCea608708Caption>); } export default SrtToCea608708Caption;