@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
12 lines (11 loc) • 345 B
TypeScript
/**
* Configure if the encoding should use the video stream as the passthrough mode or a dedicated caption stream.
* @export
* @enum {string}
*/
export declare enum PassthroughMode {
VIDEO_STREAM = "VIDEO_STREAM",
CAPTION_STREAM = "CAPTION_STREAM",
VIDEO_CAPTION_STREAM = "VIDEO_CAPTION_STREAM"
}
export default PassthroughMode;