@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
53 lines (52 loc) • 2.17 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.InputStream = void 0;
var BitmovinResource_1 = require("./BitmovinResource");
/**
* @export
* @class InputStream
*/
var InputStream = /** @class */ (function (_super) {
__extends(InputStream, _super);
function InputStream(obj) {
var _this = _super.call(this, obj) || this;
if (!obj) {
return _this;
}
return _this;
}
InputStream._discriminatorName = 'type';
InputStream._discriminatorMapping = {
"INGEST": 'IngestInputStream',
"CONCATENATION": 'ConcatenationInputStream',
"TRIMMING_TIME_BASED": 'TimeBasedTrimmingInputStream',
"TRIMMING_TIME_CODE_TRACK": 'TimecodeTrackTrimmingInputStream',
"TRIMMING_H264_PICTURE_TIMING": 'H264PictureTimingTrimmingInputStream',
"AUDIO_MIX": 'AudioMixInputStream',
"SIDECAR_DOLBY_VISION_METADATA": 'DolbyVisionMetadataIngestInputStream',
"CAPTION_CEA608": 'Cea608CaptionInputStream',
"CAPTION_CEA708": 'Cea708CaptionInputStream',
"FILE": 'FileInputStream',
"DVB_SUBTITLE": 'DvbSubtitleInputStream',
"DOLBY_ATMOS": 'DolbyAtmosIngestInputStream',
"DOLBY_VISION": 'DolbyVisionInputStream'
};
return InputStream;
}(BitmovinResource_1.default));
exports.InputStream = InputStream;
exports.default = InputStream;