@bitmovin/api-sdk 1.101.0 → 1.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +179 -11
- package/dist/bitmovin-api-sdk.browser.js.map +1 -1
- package/dist/bitmovin-api-sdk.browser.min.js +2 -2
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/configurations/video/av1/Av1Api.js.map +1 -1
- package/dist/encoding/manifests/dash/DashApi.d.ts +3 -2
- package/dist/encoding/manifests/dash/DashApi.js +3 -3
- package/dist/encoding/manifests/dash/DashApi.js.map +1 -1
- package/dist/encoding/manifests/hls/HlsApi.d.ts +3 -2
- package/dist/encoding/manifests/hls/HlsApi.js +3 -3
- package/dist/encoding/manifests/hls/HlsApi.js.map +1 -1
- package/dist/encoding/manifests/smooth/SmoothApi.d.ts +3 -2
- package/dist/encoding/manifests/smooth/SmoothApi.js +3 -3
- package/dist/encoding/manifests/smooth/SmoothApi.js.map +1 -1
- package/dist/models/Av1PerTitleConfiguration.d.ts +15 -0
- package/dist/models/Av1PerTitleConfiguration.js +37 -0
- package/dist/models/Av1PerTitleConfiguration.js.map +1 -0
- package/dist/models/Av1PresetConfiguration.d.ts +10 -0
- package/dist/models/Av1PresetConfiguration.js +15 -0
- package/dist/models/Av1PresetConfiguration.js.map +1 -0
- package/dist/models/Av1VideoConfiguration.d.ts +7 -0
- package/dist/models/Av1VideoConfiguration.js +2 -0
- package/dist/models/Av1VideoConfiguration.js.map +1 -1
- package/dist/models/AwsCloudRegion.d.ts +2 -1
- package/dist/models/AwsCloudRegion.js +1 -0
- package/dist/models/AwsCloudRegion.js.map +1 -1
- package/dist/models/CloudRegion.d.ts +1 -0
- package/dist/models/CloudRegion.js +1 -0
- package/dist/models/CloudRegion.js.map +1 -1
- package/dist/models/DirectFileUploadInput.d.ts +16 -0
- package/dist/models/DirectFileUploadInput.js +42 -0
- package/dist/models/DirectFileUploadInput.js.map +1 -0
- package/dist/models/EncodingTemplate.d.ts +9 -0
- package/dist/models/EncodingTemplate.js +14 -0
- package/dist/models/EncodingTemplate.js.map +1 -0
- package/dist/models/Input.d.ts +2 -1
- package/dist/models/Input.js +2 -1
- package/dist/models/Input.js.map +1 -1
- package/dist/models/InputType.d.ts +2 -1
- package/dist/models/InputType.js +1 -0
- package/dist/models/InputType.js.map +1 -1
- package/dist/models/PerTitle.d.ts +7 -0
- package/dist/models/PerTitle.js +2 -0
- package/dist/models/PerTitle.js.map +1 -1
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobRequest.js +1 -0
- package/dist/models/SimpleEncodingVodJobRequest.js.map +1 -1
- package/dist/models/SimpleEncodingVodJobResponse.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobResponse.js +1 -0
- package/dist/models/SimpleEncodingVodJobResponse.js.map +1 -1
- package/dist/models/StartManifestRequest.d.ts +7 -0
- package/dist/models/StartManifestRequest.js +2 -0
- package/dist/models/StartManifestRequest.js.map +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6974,7 +6974,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6974
6974
|
var headers = {
|
|
6975
6975
|
'X-Api-Key': apiKey,
|
|
6976
6976
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6977
|
-
'X-Api-Client-Version': '1.
|
|
6977
|
+
'X-Api-Client-Version': '1.105.0',
|
|
6978
6978
|
'Content-Type': 'application/json'
|
|
6979
6979
|
};
|
|
6980
6980
|
if (tenantOrgId) {
|
|
@@ -41480,15 +41480,15 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
41480
41480
|
/**
|
|
41481
41481
|
* @summary Start DASH Manifest Creation
|
|
41482
41482
|
* @param {string} manifestId Id of the DASH manifest.
|
|
41483
|
-
* @param {
|
|
41483
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
41484
41484
|
* @throws {BitmovinError}
|
|
41485
41485
|
* @memberof DashApi
|
|
41486
41486
|
*/
|
|
41487
|
-
DashApi.prototype.start = function (manifestId,
|
|
41487
|
+
DashApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
41488
41488
|
var pathParamMap = {
|
|
41489
41489
|
manifest_id: manifestId
|
|
41490
41490
|
};
|
|
41491
|
-
return this.restClient.post('/encoding/manifests/dash/{manifest_id}/start', pathParamMap,
|
|
41491
|
+
return this.restClient.post('/encoding/manifests/dash/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
41492
41492
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
41493
41493
|
});
|
|
41494
41494
|
};
|
|
@@ -46037,15 +46037,15 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
46037
46037
|
/**
|
|
46038
46038
|
* @summary Start HLS Manifest Creation
|
|
46039
46039
|
* @param {string} manifestId Id of the HLS manifest.
|
|
46040
|
-
* @param {
|
|
46040
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
46041
46041
|
* @throws {BitmovinError}
|
|
46042
46042
|
* @memberof HlsApi
|
|
46043
46043
|
*/
|
|
46044
|
-
HlsApi.prototype.start = function (manifestId,
|
|
46044
|
+
HlsApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
46045
46045
|
var pathParamMap = {
|
|
46046
46046
|
manifest_id: manifestId
|
|
46047
46047
|
};
|
|
46048
|
-
return this.restClient.post('/encoding/manifests/hls/{manifest_id}/start', pathParamMap,
|
|
46048
|
+
return this.restClient.post('/encoding/manifests/hls/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
46049
46049
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
46050
46050
|
});
|
|
46051
46051
|
};
|
|
@@ -47915,15 +47915,15 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
47915
47915
|
/**
|
|
47916
47916
|
* @summary Start Smooth Streaming Manifest Creation
|
|
47917
47917
|
* @param {string} manifestId Id of the Smooth Streaming manifest.
|
|
47918
|
-
* @param {
|
|
47918
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
47919
47919
|
* @throws {BitmovinError}
|
|
47920
47920
|
* @memberof SmoothApi
|
|
47921
47921
|
*/
|
|
47922
|
-
SmoothApi.prototype.start = function (manifestId,
|
|
47922
|
+
SmoothApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
47923
47923
|
var pathParamMap = {
|
|
47924
47924
|
manifest_id: manifestId
|
|
47925
47925
|
};
|
|
47926
|
-
return this.restClient.post('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap,
|
|
47926
|
+
return this.restClient.post('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
47927
47927
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
47928
47928
|
});
|
|
47929
47929
|
};
|
|
@@ -59879,6 +59879,80 @@ exports.AutoRestartConfiguration = AutoRestartConfiguration;
|
|
|
59879
59879
|
exports.default = AutoRestartConfiguration;
|
|
59880
59880
|
|
|
59881
59881
|
|
|
59882
|
+
/***/ }),
|
|
59883
|
+
|
|
59884
|
+
/***/ "./models/Av1PerTitleConfiguration.ts":
|
|
59885
|
+
/*!********************************************!*\
|
|
59886
|
+
!*** ./models/Av1PerTitleConfiguration.ts ***!
|
|
59887
|
+
\********************************************/
|
|
59888
|
+
/*! no static exports found */
|
|
59889
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
59890
|
+
|
|
59891
|
+
"use strict";
|
|
59892
|
+
|
|
59893
|
+
var __extends = (this && this.__extends) || (function () {
|
|
59894
|
+
var extendStatics = function (d, b) {
|
|
59895
|
+
extendStatics = Object.setPrototypeOf ||
|
|
59896
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
59897
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
59898
|
+
return extendStatics(d, b);
|
|
59899
|
+
};
|
|
59900
|
+
return function (d, b) {
|
|
59901
|
+
extendStatics(d, b);
|
|
59902
|
+
function __() { this.constructor = d; }
|
|
59903
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
59904
|
+
};
|
|
59905
|
+
})();
|
|
59906
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59907
|
+
exports.Av1PerTitleConfiguration = void 0;
|
|
59908
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59909
|
+
var PerTitleConfiguration_1 = __webpack_require__(/*! ./PerTitleConfiguration */ "./models/PerTitleConfiguration.ts");
|
|
59910
|
+
/**
|
|
59911
|
+
* @export
|
|
59912
|
+
* @class Av1PerTitleConfiguration
|
|
59913
|
+
*/
|
|
59914
|
+
var Av1PerTitleConfiguration = /** @class */ (function (_super) {
|
|
59915
|
+
__extends(Av1PerTitleConfiguration, _super);
|
|
59916
|
+
function Av1PerTitleConfiguration(obj) {
|
|
59917
|
+
var _this = _super.call(this, obj) || this;
|
|
59918
|
+
if (!obj) {
|
|
59919
|
+
return _this;
|
|
59920
|
+
}
|
|
59921
|
+
_this.targetQualityCrf = Mapper_1.map(obj.targetQualityCrf);
|
|
59922
|
+
return _this;
|
|
59923
|
+
}
|
|
59924
|
+
return Av1PerTitleConfiguration;
|
|
59925
|
+
}(PerTitleConfiguration_1.default));
|
|
59926
|
+
exports.Av1PerTitleConfiguration = Av1PerTitleConfiguration;
|
|
59927
|
+
exports.default = Av1PerTitleConfiguration;
|
|
59928
|
+
|
|
59929
|
+
|
|
59930
|
+
/***/ }),
|
|
59931
|
+
|
|
59932
|
+
/***/ "./models/Av1PresetConfiguration.ts":
|
|
59933
|
+
/*!******************************************!*\
|
|
59934
|
+
!*** ./models/Av1PresetConfiguration.ts ***!
|
|
59935
|
+
\******************************************/
|
|
59936
|
+
/*! no static exports found */
|
|
59937
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
59938
|
+
|
|
59939
|
+
"use strict";
|
|
59940
|
+
|
|
59941
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59942
|
+
exports.Av1PresetConfiguration = void 0;
|
|
59943
|
+
/**
|
|
59944
|
+
* @export
|
|
59945
|
+
* @enum {string}
|
|
59946
|
+
*/
|
|
59947
|
+
var Av1PresetConfiguration;
|
|
59948
|
+
(function (Av1PresetConfiguration) {
|
|
59949
|
+
Av1PresetConfiguration["VOD_QUALITY"] = "VOD_QUALITY";
|
|
59950
|
+
Av1PresetConfiguration["VOD_STANDARD"] = "VOD_STANDARD";
|
|
59951
|
+
Av1PresetConfiguration["VOD_SPEED"] = "VOD_SPEED";
|
|
59952
|
+
})(Av1PresetConfiguration = exports.Av1PresetConfiguration || (exports.Av1PresetConfiguration = {}));
|
|
59953
|
+
exports.default = Av1PresetConfiguration;
|
|
59954
|
+
|
|
59955
|
+
|
|
59882
59956
|
/***/ }),
|
|
59883
59957
|
|
|
59884
59958
|
/***/ "./models/Av1VideoConfiguration.ts":
|
|
@@ -59905,6 +59979,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
59905
59979
|
})();
|
|
59906
59980
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59907
59981
|
exports.Av1VideoConfiguration = void 0;
|
|
59982
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59908
59983
|
var CodecConfigType_1 = __webpack_require__(/*! ./CodecConfigType */ "./models/CodecConfigType.ts");
|
|
59909
59984
|
var VideoConfiguration_1 = __webpack_require__(/*! ./VideoConfiguration */ "./models/VideoConfiguration.ts");
|
|
59910
59985
|
/**
|
|
@@ -59924,6 +59999,7 @@ var Av1VideoConfiguration = /** @class */ (function (_super) {
|
|
|
59924
59999
|
if (!obj) {
|
|
59925
60000
|
return _this;
|
|
59926
60001
|
}
|
|
60002
|
+
_this.presetConfiguration = Mapper_1.map(obj.presetConfiguration);
|
|
59927
60003
|
return _this;
|
|
59928
60004
|
}
|
|
59929
60005
|
return Av1VideoConfiguration;
|
|
@@ -60093,6 +60169,7 @@ var AwsCloudRegion;
|
|
|
60093
60169
|
AwsCloudRegion["EU_WEST_2"] = "EU_WEST_2";
|
|
60094
60170
|
AwsCloudRegion["EU_WEST_3"] = "EU_WEST_3";
|
|
60095
60171
|
AwsCloudRegion["CA_CENTRAL_1"] = "CA_CENTRAL_1";
|
|
60172
|
+
AwsCloudRegion["EU_NORTH_1"] = "EU_NORTH_1";
|
|
60096
60173
|
})(AwsCloudRegion = exports.AwsCloudRegion || (exports.AwsCloudRegion = {}));
|
|
60097
60174
|
exports.default = AwsCloudRegion;
|
|
60098
60175
|
|
|
@@ -62250,6 +62327,7 @@ var CloudRegion;
|
|
|
62250
62327
|
CloudRegion["AWS_EU_WEST_2"] = "AWS_EU_WEST_2";
|
|
62251
62328
|
CloudRegion["AWS_EU_WEST_3"] = "AWS_EU_WEST_3";
|
|
62252
62329
|
CloudRegion["AWS_CA_CENTRAL_1"] = "AWS_CA_CENTRAL_1";
|
|
62330
|
+
CloudRegion["AWS_EU_NORTH_1"] = "AWS_EU_NORTH_1";
|
|
62253
62331
|
CloudRegion["GOOGLE_US_CENTRAL_1"] = "GOOGLE_US_CENTRAL_1";
|
|
62254
62332
|
CloudRegion["GOOGLE_US_EAST_1"] = "GOOGLE_US_EAST_1";
|
|
62255
62333
|
CloudRegion["GOOGLE_ASIA_EAST_1"] = "GOOGLE_ASIA_EAST_1";
|
|
@@ -65069,6 +65147,59 @@ exports.DenoiseHqdn3dFilter = DenoiseHqdn3dFilter;
|
|
|
65069
65147
|
exports.default = DenoiseHqdn3dFilter;
|
|
65070
65148
|
|
|
65071
65149
|
|
|
65150
|
+
/***/ }),
|
|
65151
|
+
|
|
65152
|
+
/***/ "./models/DirectFileUploadInput.ts":
|
|
65153
|
+
/*!*****************************************!*\
|
|
65154
|
+
!*** ./models/DirectFileUploadInput.ts ***!
|
|
65155
|
+
\*****************************************/
|
|
65156
|
+
/*! no static exports found */
|
|
65157
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
65158
|
+
|
|
65159
|
+
"use strict";
|
|
65160
|
+
|
|
65161
|
+
var __extends = (this && this.__extends) || (function () {
|
|
65162
|
+
var extendStatics = function (d, b) {
|
|
65163
|
+
extendStatics = Object.setPrototypeOf ||
|
|
65164
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
65165
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
65166
|
+
return extendStatics(d, b);
|
|
65167
|
+
};
|
|
65168
|
+
return function (d, b) {
|
|
65169
|
+
extendStatics(d, b);
|
|
65170
|
+
function __() { this.constructor = d; }
|
|
65171
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
65172
|
+
};
|
|
65173
|
+
})();
|
|
65174
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65175
|
+
exports.DirectFileUploadInput = void 0;
|
|
65176
|
+
var Input_1 = __webpack_require__(/*! ./Input */ "./models/Input.ts");
|
|
65177
|
+
var InputType_1 = __webpack_require__(/*! ./InputType */ "./models/InputType.ts");
|
|
65178
|
+
/**
|
|
65179
|
+
* @export
|
|
65180
|
+
* @class DirectFileUploadInput
|
|
65181
|
+
*/
|
|
65182
|
+
var DirectFileUploadInput = /** @class */ (function (_super) {
|
|
65183
|
+
__extends(DirectFileUploadInput, _super);
|
|
65184
|
+
function DirectFileUploadInput(obj) {
|
|
65185
|
+
var _this = _super.call(this, obj) || this;
|
|
65186
|
+
/**
|
|
65187
|
+
* Discriminator property for Input
|
|
65188
|
+
* @type {string}
|
|
65189
|
+
* @memberof DirectFileUploadInput
|
|
65190
|
+
*/
|
|
65191
|
+
_this.type = InputType_1.default.DIRECT_FILE_UPLOAD;
|
|
65192
|
+
if (!obj) {
|
|
65193
|
+
return _this;
|
|
65194
|
+
}
|
|
65195
|
+
return _this;
|
|
65196
|
+
}
|
|
65197
|
+
return DirectFileUploadInput;
|
|
65198
|
+
}(Input_1.default));
|
|
65199
|
+
exports.DirectFileUploadInput = DirectFileUploadInput;
|
|
65200
|
+
exports.default = DirectFileUploadInput;
|
|
65201
|
+
|
|
65202
|
+
|
|
65072
65203
|
/***/ }),
|
|
65073
65204
|
|
|
65074
65205
|
/***/ "./models/DisplayAspectRatio.ts":
|
|
@@ -68153,6 +68284,31 @@ exports.EncodingStreamInputDetails = EncodingStreamInputDetails;
|
|
|
68153
68284
|
exports.default = EncodingStreamInputDetails;
|
|
68154
68285
|
|
|
68155
68286
|
|
|
68287
|
+
/***/ }),
|
|
68288
|
+
|
|
68289
|
+
/***/ "./models/EncodingTemplate.ts":
|
|
68290
|
+
/*!************************************!*\
|
|
68291
|
+
!*** ./models/EncodingTemplate.ts ***!
|
|
68292
|
+
\************************************/
|
|
68293
|
+
/*! no static exports found */
|
|
68294
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
68295
|
+
|
|
68296
|
+
"use strict";
|
|
68297
|
+
|
|
68298
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68299
|
+
exports.EncodingTemplate = void 0;
|
|
68300
|
+
/**
|
|
68301
|
+
* @export
|
|
68302
|
+
* @enum {string}
|
|
68303
|
+
*/
|
|
68304
|
+
var EncodingTemplate;
|
|
68305
|
+
(function (EncodingTemplate) {
|
|
68306
|
+
EncodingTemplate["H264"] = "H264";
|
|
68307
|
+
EncodingTemplate["AV1"] = "AV1";
|
|
68308
|
+
})(EncodingTemplate = exports.EncodingTemplate || (exports.EncodingTemplate = {}));
|
|
68309
|
+
exports.default = EncodingTemplate;
|
|
68310
|
+
|
|
68311
|
+
|
|
68156
68312
|
/***/ }),
|
|
68157
68313
|
|
|
68158
68314
|
/***/ "./models/EncodingType.ts":
|
|
@@ -71416,7 +71572,8 @@ var Input = /** @class */ (function (_super) {
|
|
|
71416
71572
|
UDP_MULTICAST: 'UdpMulticastInput',
|
|
71417
71573
|
ZIXI: 'ZixiInput',
|
|
71418
71574
|
SRT: 'SrtInput',
|
|
71419
|
-
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput'
|
|
71575
|
+
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput',
|
|
71576
|
+
DIRECT_FILE_UPLOAD: 'DirectFileUploadInput'
|
|
71420
71577
|
};
|
|
71421
71578
|
return Input;
|
|
71422
71579
|
}(BitmovinResource_1.default));
|
|
@@ -71787,6 +71944,7 @@ var InputType;
|
|
|
71787
71944
|
InputType["ZIXI"] = "ZIXI";
|
|
71788
71945
|
InputType["SRT"] = "SRT";
|
|
71789
71946
|
InputType["GCS_SERVICE_ACCOUNT"] = "GCS_SERVICE_ACCOUNT";
|
|
71947
|
+
InputType["DIRECT_FILE_UPLOAD"] = "DIRECT_FILE_UPLOAD";
|
|
71790
71948
|
})(InputType = exports.InputType || (exports.InputType = {}));
|
|
71791
71949
|
exports.default = InputType;
|
|
71792
71950
|
|
|
@@ -75379,6 +75537,7 @@ exports.default = PcmSampleFormat;
|
|
|
75379
75537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
75380
75538
|
exports.PerTitle = void 0;
|
|
75381
75539
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75540
|
+
var Av1PerTitleConfiguration_1 = __webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts");
|
|
75382
75541
|
var H264PerTitleConfiguration_1 = __webpack_require__(/*! ./H264PerTitleConfiguration */ "./models/H264PerTitleConfiguration.ts");
|
|
75383
75542
|
var H265PerTitleConfiguration_1 = __webpack_require__(/*! ./H265PerTitleConfiguration */ "./models/H265PerTitleConfiguration.ts");
|
|
75384
75543
|
var Vp9PerTitleConfiguration_1 = __webpack_require__(/*! ./Vp9PerTitleConfiguration */ "./models/Vp9PerTitleConfiguration.ts");
|
|
@@ -75394,6 +75553,7 @@ var PerTitle = /** @class */ (function () {
|
|
|
75394
75553
|
this.h264Configuration = Mapper_1.map(obj.h264Configuration, H264PerTitleConfiguration_1.default);
|
|
75395
75554
|
this.h265Configuration = Mapper_1.map(obj.h265Configuration, H265PerTitleConfiguration_1.default);
|
|
75396
75555
|
this.vp9Configuration = Mapper_1.map(obj.vp9Configuration, Vp9PerTitleConfiguration_1.default);
|
|
75556
|
+
this.av1Configuration = Mapper_1.map(obj.av1Configuration, Av1PerTitleConfiguration_1.default);
|
|
75397
75557
|
}
|
|
75398
75558
|
return PerTitle;
|
|
75399
75559
|
}());
|
|
@@ -78819,6 +78979,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
|
|
|
78819
78979
|
if (!obj) {
|
|
78820
78980
|
return;
|
|
78821
78981
|
}
|
|
78982
|
+
this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
|
|
78822
78983
|
this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
|
|
78823
78984
|
this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobUrlOutput_1.default);
|
|
78824
78985
|
this.name = Mapper_1.map(obj.name);
|
|
@@ -78857,6 +79018,7 @@ var SimpleEncodingVodJobResponse = /** @class */ (function () {
|
|
|
78857
79018
|
}
|
|
78858
79019
|
this.id = Mapper_1.map(obj.id);
|
|
78859
79020
|
this.status = Mapper_1.map(obj.status);
|
|
79021
|
+
this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
|
|
78860
79022
|
this.encodingId = Mapper_1.map(obj.encodingId);
|
|
78861
79023
|
this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
|
|
78862
79024
|
this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobUrlOutput_1.default);
|
|
@@ -80110,6 +80272,7 @@ exports.default = StartLiveEncodingRequest;
|
|
|
80110
80272
|
|
|
80111
80273
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
80112
80274
|
exports.StartManifestRequest = void 0;
|
|
80275
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
80113
80276
|
/**
|
|
80114
80277
|
* @export
|
|
80115
80278
|
* @class StartManifestRequest
|
|
@@ -80119,6 +80282,7 @@ var StartManifestRequest = /** @class */ (function () {
|
|
|
80119
80282
|
if (!obj) {
|
|
80120
80283
|
return;
|
|
80121
80284
|
}
|
|
80285
|
+
this.manifestGenerator = Mapper_1.map(obj.manifestGenerator);
|
|
80122
80286
|
}
|
|
80123
80287
|
return StartManifestRequest;
|
|
80124
80288
|
}());
|
|
@@ -84523,6 +84687,8 @@ __exportStar(__webpack_require__(/*! ./AudioVolumeFormat */ "./models/AudioVolum
|
|
|
84523
84687
|
__exportStar(__webpack_require__(/*! ./AudioVolumeUnit */ "./models/AudioVolumeUnit.ts"), exports);
|
|
84524
84688
|
__exportStar(__webpack_require__(/*! ./AutoRepresentation */ "./models/AutoRepresentation.ts"), exports);
|
|
84525
84689
|
__exportStar(__webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts"), exports);
|
|
84690
|
+
__exportStar(__webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts"), exports);
|
|
84691
|
+
__exportStar(__webpack_require__(/*! ./Av1PresetConfiguration */ "./models/Av1PresetConfiguration.ts"), exports);
|
|
84526
84692
|
__exportStar(__webpack_require__(/*! ./Av1VideoConfiguration */ "./models/Av1VideoConfiguration.ts"), exports);
|
|
84527
84693
|
__exportStar(__webpack_require__(/*! ./AvailabilityStartTimeMode */ "./models/AvailabilityStartTimeMode.ts"), exports);
|
|
84528
84694
|
__exportStar(__webpack_require__(/*! ./AwsAccount */ "./models/AwsAccount.ts"), exports);
|
|
@@ -84636,6 +84802,7 @@ __exportStar(__webpack_require__(/*! ./DeinterlaceFilter */ "./models/Deinterlac
|
|
|
84636
84802
|
__exportStar(__webpack_require__(/*! ./DeinterlaceFrameSelectionMode */ "./models/DeinterlaceFrameSelectionMode.ts"), exports);
|
|
84637
84803
|
__exportStar(__webpack_require__(/*! ./DeinterlaceMode */ "./models/DeinterlaceMode.ts"), exports);
|
|
84638
84804
|
__exportStar(__webpack_require__(/*! ./DenoiseHqdn3dFilter */ "./models/DenoiseHqdn3dFilter.ts"), exports);
|
|
84805
|
+
__exportStar(__webpack_require__(/*! ./DirectFileUploadInput */ "./models/DirectFileUploadInput.ts"), exports);
|
|
84639
84806
|
__exportStar(__webpack_require__(/*! ./DisplayAspectRatio */ "./models/DisplayAspectRatio.ts"), exports);
|
|
84640
84807
|
__exportStar(__webpack_require__(/*! ./DolbyAtmosAudioConfiguration */ "./models/DolbyAtmosAudioConfiguration.ts"), exports);
|
|
84641
84808
|
__exportStar(__webpack_require__(/*! ./DolbyAtmosDialogueIntelligence */ "./models/DolbyAtmosDialogueIntelligence.ts"), exports);
|
|
@@ -84719,6 +84886,7 @@ __exportStar(__webpack_require__(/*! ./EncodingStatisticsVod */ "./models/Encodi
|
|
|
84719
84886
|
__exportStar(__webpack_require__(/*! ./EncodingStats */ "./models/EncodingStats.ts"), exports);
|
|
84720
84887
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInput */ "./models/EncodingStreamInput.ts"), exports);
|
|
84721
84888
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInputDetails */ "./models/EncodingStreamInputDetails.ts"), exports);
|
|
84889
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplate */ "./models/EncodingTemplate.ts"), exports);
|
|
84722
84890
|
__exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
|
|
84723
84891
|
__exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
|
|
84724
84892
|
__exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);
|