@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
18 lines (17 loc) • 501 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VideoFormat = void 0;
/**
* @export
* @enum {string}
*/
var VideoFormat;
(function (VideoFormat) {
VideoFormat["UNDEFINED"] = "UNDEFINED";
VideoFormat["COMPONENT"] = "COMPONENT";
VideoFormat["PAL"] = "PAL";
VideoFormat["NTSC"] = "NTSC";
VideoFormat["SECAM"] = "SECAM";
VideoFormat["MAC"] = "MAC";
})(VideoFormat || (exports.VideoFormat = VideoFormat = {}));
exports.default = VideoFormat;