@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 989 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MuxingInformationAudioTrack = void 0;
var Mapper_1 = require("../common/Mapper");
/**
* @export
* @class MuxingInformationAudioTrack
*/
var MuxingInformationAudioTrack = /** @class */ (function () {
function MuxingInformationAudioTrack(obj) {
if (!obj) {
return;
}
this.index = (0, Mapper_1.map)(obj.index);
this.codec = (0, Mapper_1.map)(obj.codec);
this.codecIso = (0, Mapper_1.map)(obj.codecIso);
this.bitRate = (0, Mapper_1.map)(obj.bitRate);
this.rate = (0, Mapper_1.map)(obj.rate);
this.sampleRate = (0, Mapper_1.map)(obj.sampleRate);
this.channels = (0, Mapper_1.map)(obj.channels);
this.duration = (0, Mapper_1.map)(obj.duration);
}
return MuxingInformationAudioTrack;
}());
exports.MuxingInformationAudioTrack = MuxingInformationAudioTrack;
exports.default = MuxingInformationAudioTrack;