@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 601 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PassthroughMode = void 0;
/**
* Configure if the encoding should use the video stream as the passthrough mode or a dedicated caption stream.
* @export
* @enum {string}
*/
var PassthroughMode;
(function (PassthroughMode) {
PassthroughMode["VIDEO_STREAM"] = "VIDEO_STREAM";
PassthroughMode["CAPTION_STREAM"] = "CAPTION_STREAM";
PassthroughMode["VIDEO_CAPTION_STREAM"] = "VIDEO_CAPTION_STREAM";
})(PassthroughMode || (exports.PassthroughMode = PassthroughMode = {}));
exports.default = PassthroughMode;