@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
17 lines (16 loc) • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamSelectionMode = void 0;
/**
* @export
* @enum {string}
*/
var StreamSelectionMode;
(function (StreamSelectionMode) {
StreamSelectionMode["AUTO"] = "AUTO";
StreamSelectionMode["POSITION_ABSOLUTE"] = "POSITION_ABSOLUTE";
StreamSelectionMode["VIDEO_RELATIVE"] = "VIDEO_RELATIVE";
StreamSelectionMode["AUDIO_RELATIVE"] = "AUDIO_RELATIVE";
StreamSelectionMode["SUBTITLE_RELATIVE"] = "SUBTITLE_RELATIVE";
})(StreamSelectionMode || (exports.StreamSelectionMode = StreamSelectionMode = {}));
exports.default = StreamSelectionMode;