@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
24 lines (23 loc) • 658 B
TypeScript
import BitmovinResource from './BitmovinResource';
import InputPath from './InputPath';
import SmpteTimecodeFlavor from './SmpteTimecodeFlavor';
/**
* @export
* @class SccCaption
*/
export declare class SccCaption extends BitmovinResource {
/**
* Input location of the SCC file (required)
* @type {InputPath}
* @memberof SccCaption
*/
input?: InputPath;
/**
* Flavor of SMPTE timecodes in the SCC file (drop-frame or non-drop)
* @type {SmpteTimecodeFlavor}
* @memberof SccCaption
*/
smpteTimecodeFlavor?: SmpteTimecodeFlavor;
constructor(obj?: Partial<SccCaption>);
}
export default SccCaption;