@bitmovin/api-sdk 1.277.0 → 1.279.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 +280 -77
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AdAnalyticsQueryRequest.d.ts +6 -0
- package/dist/models/AdAnalyticsQueryRequest.js +1 -0
- package/dist/models/AdvisoryAnalysisStatus.d.ts +9 -0
- package/dist/models/AdvisoryAnalysisStatus.js +13 -0
- package/dist/models/AdvisoryCategory.d.ts +9 -0
- package/dist/models/AdvisoryCategory.js +13 -0
- package/dist/models/AdvisoryConfidence.d.ts +11 -0
- package/dist/models/AdvisoryConfidence.js +15 -0
- package/dist/models/AiSceneAnalysisFeatures.d.ts +7 -0
- package/dist/models/AiSceneAnalysisFeatures.js +2 -0
- package/dist/models/AiSceneAnalysisRegulatoryAdvisories.d.ts +15 -0
- package/dist/models/AiSceneAnalysisRegulatoryAdvisories.js +18 -0
- package/dist/models/AkamaiMslOutput.d.ts +8 -1
- package/dist/models/AkamaiMslOutput.js +2 -0
- package/dist/models/AkamaiMslVersion.d.ts +2 -1
- package/dist/models/AkamaiMslVersion.js +1 -0
- package/dist/models/Condition.d.ts +1 -1
- package/dist/models/ConditionAttribute.d.ts +2 -1
- package/dist/models/ConditionAttribute.js +1 -0
- package/dist/models/ContentAdvisory.d.ts +29 -0
- package/dist/models/ContentAdvisory.js +21 -0
- package/dist/models/H265V2PerTitleConfiguration.d.ts +0 -6
- package/dist/models/H265V2PerTitleConfiguration.js +0 -1
- package/dist/models/H265V2RateControlModeConfig.d.ts +2 -3
- package/dist/models/H265V2RateControlModeConfig.js +2 -3
- package/dist/models/H265V2RateControlModeConfigType.d.ts +1 -2
- package/dist/models/H265V2RateControlModeConfigType.js +0 -1
- package/dist/models/MslPublishingAuthentication.d.ts +27 -0
- package/dist/models/MslPublishingAuthentication.js +21 -0
- package/dist/models/RegulatoryAdvisoryTopic.d.ts +8 -0
- package/dist/models/RegulatoryAdvisoryTopic.js +12 -0
- package/dist/models/SceneAnalysisListItem.d.ts +7 -0
- package/dist/models/SceneAnalysisListItem.js +2 -0
- package/dist/models/SceneAnalysisMatchingSegment.d.ts +46 -0
- package/dist/models/SceneAnalysisMatchingSegment.js +24 -0
- package/dist/models/Shot.d.ts +7 -0
- package/dist/models/Shot.js +2 -0
- package/dist/models/ShotAdvisories.d.ts +23 -0
- package/dist/models/ShotAdvisories.js +21 -0
- package/dist/models/index.d.ts +9 -2
- package/dist/models/index.js +9 -2
- package/package.json +1 -1
- package/dist/models/H265V2ConstantBitrateModeConfig.d.ts +0 -22
- package/dist/models/H265V2ConstantBitrateModeConfig.js +0 -27
- package/dist/models/MediaConfigBitrate.d.ts +0 -16
- package/dist/models/MediaConfigBitrate.js +0 -20
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShotAdvisories = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
const ContentAdvisory_1 = require("./ContentAdvisory");
|
|
6
|
+
/**
|
|
7
|
+
* The result of content advisory detection for a shot, covering both what was detected and whether the shot was assessed at all
|
|
8
|
+
* @export
|
|
9
|
+
* @class ShotAdvisories
|
|
10
|
+
*/
|
|
11
|
+
class ShotAdvisories {
|
|
12
|
+
constructor(obj) {
|
|
13
|
+
if (!obj) {
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
17
|
+
this.advisories = (0, Mapper_1.mapArray)(obj.advisories, ContentAdvisory_1.default);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ShotAdvisories = ShotAdvisories;
|
|
21
|
+
exports.default = ShotAdvisories;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -41,6 +41,9 @@ export * from './AdaptationSetRole';
|
|
|
41
41
|
export * from './AdaptationSetType';
|
|
42
42
|
export * from './AdaptationSetTypeResponse';
|
|
43
43
|
export * from './AdaptiveQuantMode';
|
|
44
|
+
export * from './AdvisoryAnalysisStatus';
|
|
45
|
+
export * from './AdvisoryCategory';
|
|
46
|
+
export * from './AdvisoryConfidence';
|
|
44
47
|
export * from './AesEncryptionDrm';
|
|
45
48
|
export * from './AesEncryptionMethod';
|
|
46
49
|
export * from './AgeRange';
|
|
@@ -62,6 +65,7 @@ export * from './AiSceneAnalysisAssetDescription';
|
|
|
62
65
|
export * from './AiSceneAnalysisAutomaticAdPlacement';
|
|
63
66
|
export * from './AiSceneAnalysisFeatures';
|
|
64
67
|
export * from './AiSceneAnalysisOutputLanguageCodes';
|
|
68
|
+
export * from './AiSceneAnalysisRegulatoryAdvisories';
|
|
65
69
|
export * from './AkamaiAccount';
|
|
66
70
|
export * from './AkamaiAccountRegionSettings';
|
|
67
71
|
export * from './AkamaiCloudRegion';
|
|
@@ -250,6 +254,7 @@ export * from './ConditionOperator';
|
|
|
250
254
|
export * from './ConditionType';
|
|
251
255
|
export * from './ConformFilter';
|
|
252
256
|
export * from './Content';
|
|
257
|
+
export * from './ContentAdvisory';
|
|
253
258
|
export * from './ContentProtection';
|
|
254
259
|
export * from './ConvertSccCaption';
|
|
255
260
|
export * from './ConvertSccCaptionWebVttSettings';
|
|
@@ -459,7 +464,6 @@ export * from './H264Trellis';
|
|
|
459
464
|
export * from './H264VideoConfiguration';
|
|
460
465
|
export * from './H265DynamicRangeFormat';
|
|
461
466
|
export * from './H265PerTitleConfiguration';
|
|
462
|
-
export * from './H265V2ConstantBitrateModeConfig';
|
|
463
467
|
export * from './H265V2MotionCompensatedTemporalFiltering';
|
|
464
468
|
export * from './H265V2PerTitleConfiguration';
|
|
465
469
|
export * from './H265V2PerceptualEncodingMode';
|
|
@@ -588,7 +592,6 @@ export * from './Marketplace';
|
|
|
588
592
|
export * from './MarlinDrm';
|
|
589
593
|
export * from './MaxCtuSize';
|
|
590
594
|
export * from './MaxTransformUnitSize';
|
|
591
|
-
export * from './MediaConfigBitrate';
|
|
592
595
|
export * from './MediaInfoType';
|
|
593
596
|
export * from './MediaInfoTypeResponse';
|
|
594
597
|
export * from './MediaStream';
|
|
@@ -605,6 +608,7 @@ export * from './Mp3Muxing';
|
|
|
605
608
|
export * from './Mp3MuxingInformation';
|
|
606
609
|
export * from './Mp4Muxing';
|
|
607
610
|
export * from './Mp4MuxingInformation';
|
|
611
|
+
export * from './MslPublishingAuthentication';
|
|
608
612
|
export * from './Muxing';
|
|
609
613
|
export * from './MuxingInformationAudioTrack';
|
|
610
614
|
export * from './MuxingInformationVideoTrack';
|
|
@@ -704,6 +708,7 @@ export * from './RateDistortionPenaltyMode';
|
|
|
704
708
|
export * from './Rating';
|
|
705
709
|
export * from './RawId3Tag';
|
|
706
710
|
export * from './RedundantRtmpInput';
|
|
711
|
+
export * from './RegulatoryAdvisoryTopic';
|
|
707
712
|
export * from './ReprioritizeEncodingRequest';
|
|
708
713
|
export * from './RescheduleEncodingRequest';
|
|
709
714
|
export * from './ResetLiveManifestTimeShift';
|
|
@@ -734,6 +739,7 @@ export * from './SceneAnalysisDetailsResponse';
|
|
|
734
739
|
export * from './SceneAnalysisLanguagesResponse';
|
|
735
740
|
export * from './SceneAnalysisListItem';
|
|
736
741
|
export * from './SceneAnalysisListSort';
|
|
742
|
+
export * from './SceneAnalysisMatchingSegment';
|
|
737
743
|
export * from './SceneDynamics';
|
|
738
744
|
export * from './SceneObject';
|
|
739
745
|
export * from './ScenePacing';
|
|
@@ -750,6 +756,7 @@ export * from './Setting';
|
|
|
750
756
|
export * from './SftpInput';
|
|
751
757
|
export * from './SftpOutput';
|
|
752
758
|
export * from './Shot';
|
|
759
|
+
export * from './ShotAdvisories';
|
|
753
760
|
export * from './SidecarErrorMode';
|
|
754
761
|
export * from './SidecarFile';
|
|
755
762
|
export * from './SidecarFileType';
|
package/dist/models/index.js
CHANGED
|
@@ -57,6 +57,9 @@ __exportStar(require("./AdaptationSetRole"), exports);
|
|
|
57
57
|
__exportStar(require("./AdaptationSetType"), exports);
|
|
58
58
|
__exportStar(require("./AdaptationSetTypeResponse"), exports);
|
|
59
59
|
__exportStar(require("./AdaptiveQuantMode"), exports);
|
|
60
|
+
__exportStar(require("./AdvisoryAnalysisStatus"), exports);
|
|
61
|
+
__exportStar(require("./AdvisoryCategory"), exports);
|
|
62
|
+
__exportStar(require("./AdvisoryConfidence"), exports);
|
|
60
63
|
__exportStar(require("./AesEncryptionDrm"), exports);
|
|
61
64
|
__exportStar(require("./AesEncryptionMethod"), exports);
|
|
62
65
|
__exportStar(require("./AgeRange"), exports);
|
|
@@ -78,6 +81,7 @@ __exportStar(require("./AiSceneAnalysisAssetDescription"), exports);
|
|
|
78
81
|
__exportStar(require("./AiSceneAnalysisAutomaticAdPlacement"), exports);
|
|
79
82
|
__exportStar(require("./AiSceneAnalysisFeatures"), exports);
|
|
80
83
|
__exportStar(require("./AiSceneAnalysisOutputLanguageCodes"), exports);
|
|
84
|
+
__exportStar(require("./AiSceneAnalysisRegulatoryAdvisories"), exports);
|
|
81
85
|
__exportStar(require("./AkamaiAccount"), exports);
|
|
82
86
|
__exportStar(require("./AkamaiAccountRegionSettings"), exports);
|
|
83
87
|
__exportStar(require("./AkamaiCloudRegion"), exports);
|
|
@@ -266,6 +270,7 @@ __exportStar(require("./ConditionOperator"), exports);
|
|
|
266
270
|
__exportStar(require("./ConditionType"), exports);
|
|
267
271
|
__exportStar(require("./ConformFilter"), exports);
|
|
268
272
|
__exportStar(require("./Content"), exports);
|
|
273
|
+
__exportStar(require("./ContentAdvisory"), exports);
|
|
269
274
|
__exportStar(require("./ContentProtection"), exports);
|
|
270
275
|
__exportStar(require("./ConvertSccCaption"), exports);
|
|
271
276
|
__exportStar(require("./ConvertSccCaptionWebVttSettings"), exports);
|
|
@@ -475,7 +480,6 @@ __exportStar(require("./H264Trellis"), exports);
|
|
|
475
480
|
__exportStar(require("./H264VideoConfiguration"), exports);
|
|
476
481
|
__exportStar(require("./H265DynamicRangeFormat"), exports);
|
|
477
482
|
__exportStar(require("./H265PerTitleConfiguration"), exports);
|
|
478
|
-
__exportStar(require("./H265V2ConstantBitrateModeConfig"), exports);
|
|
479
483
|
__exportStar(require("./H265V2MotionCompensatedTemporalFiltering"), exports);
|
|
480
484
|
__exportStar(require("./H265V2PerTitleConfiguration"), exports);
|
|
481
485
|
__exportStar(require("./H265V2PerceptualEncodingMode"), exports);
|
|
@@ -604,7 +608,6 @@ __exportStar(require("./Marketplace"), exports);
|
|
|
604
608
|
__exportStar(require("./MarlinDrm"), exports);
|
|
605
609
|
__exportStar(require("./MaxCtuSize"), exports);
|
|
606
610
|
__exportStar(require("./MaxTransformUnitSize"), exports);
|
|
607
|
-
__exportStar(require("./MediaConfigBitrate"), exports);
|
|
608
611
|
__exportStar(require("./MediaInfoType"), exports);
|
|
609
612
|
__exportStar(require("./MediaInfoTypeResponse"), exports);
|
|
610
613
|
__exportStar(require("./MediaStream"), exports);
|
|
@@ -621,6 +624,7 @@ __exportStar(require("./Mp3Muxing"), exports);
|
|
|
621
624
|
__exportStar(require("./Mp3MuxingInformation"), exports);
|
|
622
625
|
__exportStar(require("./Mp4Muxing"), exports);
|
|
623
626
|
__exportStar(require("./Mp4MuxingInformation"), exports);
|
|
627
|
+
__exportStar(require("./MslPublishingAuthentication"), exports);
|
|
624
628
|
__exportStar(require("./Muxing"), exports);
|
|
625
629
|
__exportStar(require("./MuxingInformationAudioTrack"), exports);
|
|
626
630
|
__exportStar(require("./MuxingInformationVideoTrack"), exports);
|
|
@@ -720,6 +724,7 @@ __exportStar(require("./RateDistortionPenaltyMode"), exports);
|
|
|
720
724
|
__exportStar(require("./Rating"), exports);
|
|
721
725
|
__exportStar(require("./RawId3Tag"), exports);
|
|
722
726
|
__exportStar(require("./RedundantRtmpInput"), exports);
|
|
727
|
+
__exportStar(require("./RegulatoryAdvisoryTopic"), exports);
|
|
723
728
|
__exportStar(require("./ReprioritizeEncodingRequest"), exports);
|
|
724
729
|
__exportStar(require("./RescheduleEncodingRequest"), exports);
|
|
725
730
|
__exportStar(require("./ResetLiveManifestTimeShift"), exports);
|
|
@@ -750,6 +755,7 @@ __exportStar(require("./SceneAnalysisDetailsResponse"), exports);
|
|
|
750
755
|
__exportStar(require("./SceneAnalysisLanguagesResponse"), exports);
|
|
751
756
|
__exportStar(require("./SceneAnalysisListItem"), exports);
|
|
752
757
|
__exportStar(require("./SceneAnalysisListSort"), exports);
|
|
758
|
+
__exportStar(require("./SceneAnalysisMatchingSegment"), exports);
|
|
753
759
|
__exportStar(require("./SceneDynamics"), exports);
|
|
754
760
|
__exportStar(require("./SceneObject"), exports);
|
|
755
761
|
__exportStar(require("./ScenePacing"), exports);
|
|
@@ -766,6 +772,7 @@ __exportStar(require("./Setting"), exports);
|
|
|
766
772
|
__exportStar(require("./SftpInput"), exports);
|
|
767
773
|
__exportStar(require("./SftpOutput"), exports);
|
|
768
774
|
__exportStar(require("./Shot"), exports);
|
|
775
|
+
__exportStar(require("./ShotAdvisories"), exports);
|
|
769
776
|
__exportStar(require("./SidecarErrorMode"), exports);
|
|
770
777
|
__exportStar(require("./SidecarFile"), exports);
|
|
771
778
|
__exportStar(require("./SidecarFileType"), exports);
|
package/package.json
CHANGED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import H265V2RateControlModeConfig from './H265V2RateControlModeConfig';
|
|
2
|
-
import H265V2RateControlModeConfigType from './H265V2RateControlModeConfigType';
|
|
3
|
-
/**
|
|
4
|
-
* @export
|
|
5
|
-
* @class H265V2ConstantBitrateModeConfig
|
|
6
|
-
*/
|
|
7
|
-
export declare class H265V2ConstantBitrateModeConfig extends H265V2RateControlModeConfig {
|
|
8
|
-
/**
|
|
9
|
-
* Discriminator property for H265V2RateControlModeConfig
|
|
10
|
-
* @type {string}
|
|
11
|
-
* @memberof H265V2ConstantBitrateModeConfig
|
|
12
|
-
*/
|
|
13
|
-
readonly type: H265V2RateControlModeConfigType;
|
|
14
|
-
/**
|
|
15
|
-
* Enable filler data for constant bitrate mode.
|
|
16
|
-
* @type {boolean}
|
|
17
|
-
* @memberof H265V2ConstantBitrateModeConfig
|
|
18
|
-
*/
|
|
19
|
-
fillerdata?: boolean;
|
|
20
|
-
constructor(obj?: Partial<H265V2ConstantBitrateModeConfig>);
|
|
21
|
-
}
|
|
22
|
-
export default H265V2ConstantBitrateModeConfig;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.H265V2ConstantBitrateModeConfig = void 0;
|
|
4
|
-
const Mapper_1 = require("../common/Mapper");
|
|
5
|
-
const H265V2RateControlModeConfig_1 = require("./H265V2RateControlModeConfig");
|
|
6
|
-
const H265V2RateControlModeConfigType_1 = require("./H265V2RateControlModeConfigType");
|
|
7
|
-
/**
|
|
8
|
-
* @export
|
|
9
|
-
* @class H265V2ConstantBitrateModeConfig
|
|
10
|
-
*/
|
|
11
|
-
class H265V2ConstantBitrateModeConfig extends H265V2RateControlModeConfig_1.default {
|
|
12
|
-
constructor(obj) {
|
|
13
|
-
super(obj);
|
|
14
|
-
/**
|
|
15
|
-
* Discriminator property for H265V2RateControlModeConfig
|
|
16
|
-
* @type {string}
|
|
17
|
-
* @memberof H265V2ConstantBitrateModeConfig
|
|
18
|
-
*/
|
|
19
|
-
this.type = H265V2RateControlModeConfigType_1.default.CONSTANT_BITRATE_MODE;
|
|
20
|
-
if (!obj) {
|
|
21
|
-
return;
|
|
22
|
-
}
|
|
23
|
-
this.fillerdata = (0, Mapper_1.map)(obj.fillerdata);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
exports.H265V2ConstantBitrateModeConfig = H265V2ConstantBitrateModeConfig;
|
|
27
|
-
exports.default = H265V2ConstantBitrateModeConfig;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The supported bitrate
|
|
3
|
-
* @export
|
|
4
|
-
* @enum {string}
|
|
5
|
-
*/
|
|
6
|
-
export declare enum MediaConfigBitrate {
|
|
7
|
-
MCB_160000 = "160000",
|
|
8
|
-
MCB_192000 = "192000",
|
|
9
|
-
MCB_224000 = "224000",
|
|
10
|
-
MCB_256000 = "256000",
|
|
11
|
-
MCB_288000 = "288000",
|
|
12
|
-
MCB_320000 = "320000",
|
|
13
|
-
MCB_384000 = "384000",
|
|
14
|
-
MCB_448000 = "448000"
|
|
15
|
-
}
|
|
16
|
-
export default MediaConfigBitrate;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MediaConfigBitrate = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* The supported bitrate
|
|
6
|
-
* @export
|
|
7
|
-
* @enum {string}
|
|
8
|
-
*/
|
|
9
|
-
var MediaConfigBitrate;
|
|
10
|
-
(function (MediaConfigBitrate) {
|
|
11
|
-
MediaConfigBitrate["MCB_160000"] = "160000";
|
|
12
|
-
MediaConfigBitrate["MCB_192000"] = "192000";
|
|
13
|
-
MediaConfigBitrate["MCB_224000"] = "224000";
|
|
14
|
-
MediaConfigBitrate["MCB_256000"] = "256000";
|
|
15
|
-
MediaConfigBitrate["MCB_288000"] = "288000";
|
|
16
|
-
MediaConfigBitrate["MCB_320000"] = "320000";
|
|
17
|
-
MediaConfigBitrate["MCB_384000"] = "384000";
|
|
18
|
-
MediaConfigBitrate["MCB_448000"] = "448000";
|
|
19
|
-
})(MediaConfigBitrate || (exports.MediaConfigBitrate = MediaConfigBitrate = {}));
|
|
20
|
-
exports.default = MediaConfigBitrate;
|