@bitmovin/api-sdk 1.226.0 → 1.228.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/account/organizations/groups/GroupListQueryParams.d.ts +28 -0
- package/dist/account/organizations/groups/GroupListQueryParams.js +29 -0
- package/dist/account/organizations/groups/GroupsApi.d.ts +3 -1
- package/dist/account/organizations/groups/GroupsApi.js +11 -2
- package/dist/bitmovin-api-sdk.browser.js +419 -59
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/EncodingsApi.d.ts +2 -0
- package/dist/encoding/encodings/EncodingsApi.js +2 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/BurnInSubtitlesApi.d.ts +2 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/BurnInSubtitlesApi.js +2 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/assa/AssaApi.d.ts +51 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/assa/AssaApi.js +114 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.d.ts +28 -0
- package/dist/encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.js +29 -0
- package/dist/encoding/encodings/template/TemplateApi.d.ts +19 -0
- package/dist/encoding/encodings/template/TemplateApi.js +48 -0
- package/dist/models/AiSceneAnalysis.d.ts +22 -0
- package/dist/models/AiSceneAnalysis.js +22 -0
- package/dist/models/AiSceneAnalysisAssetDescription.d.ts +20 -0
- package/dist/models/{AiContentAnalysisAssetDescription.js → AiSceneAnalysisAssetDescription.js} +7 -7
- package/dist/models/AiSceneAnalysisAutomaticAdPlacement.d.ts +15 -0
- package/dist/models/AiSceneAnalysisAutomaticAdPlacement.js +20 -0
- package/dist/models/AiSceneAnalysisFeatures.d.ts +22 -0
- package/dist/models/AiSceneAnalysisFeatures.js +22 -0
- package/dist/models/BurnInSubtitleAssa.d.ts +23 -0
- package/dist/models/BurnInSubtitleAssa.js +40 -0
- package/dist/models/EncodingTemplateUrlResponse.d.ts +14 -0
- package/dist/models/EncodingTemplateUrlResponse.js +19 -0
- package/dist/models/StartEncodingRequest.d.ts +4 -4
- package/dist/models/StartEncodingRequest.js +2 -2
- package/dist/models/index.d.ts +6 -4
- package/dist/models/index.js +6 -4
- package/package.json +1 -1
- package/dist/models/AiContentAnalysis.d.ts +0 -22
- package/dist/models/AiContentAnalysis.js +0 -22
- package/dist/models/AiContentAnalysisAssetDescription.d.ts +0 -20
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.d.ts +0 -15
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.js +0 -20
- package/dist/models/AiContentAnalysisFeatures.d.ts +0 -22
- package/dist/models/AiContentAnalysisFeatures.js +0 -22
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import AiSceneAnalysis from './AiSceneAnalysis';
|
|
2
2
|
import EncodingMode from './EncodingMode';
|
|
3
3
|
import ManifestGenerator from './ManifestGenerator';
|
|
4
4
|
import ManifestResource from './ManifestResource';
|
|
@@ -84,11 +84,11 @@ export declare class StartEncodingRequest {
|
|
|
84
84
|
*/
|
|
85
85
|
perTitle?: PerTitle;
|
|
86
86
|
/**
|
|
87
|
-
* AI
|
|
88
|
-
* @type {
|
|
87
|
+
* AI scene analysis settings
|
|
88
|
+
* @type {AiSceneAnalysis}
|
|
89
89
|
* @memberof StartEncodingRequest
|
|
90
90
|
*/
|
|
91
|
-
|
|
91
|
+
aiSceneAnalysis?: AiSceneAnalysis;
|
|
92
92
|
constructor(obj?: Partial<StartEncodingRequest>);
|
|
93
93
|
}
|
|
94
94
|
export default StartEncodingRequest;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.StartEncodingRequest = void 0;
|
|
4
4
|
var Mapper_1 = require("../common/Mapper");
|
|
5
|
-
var
|
|
5
|
+
var AiSceneAnalysis_1 = require("./AiSceneAnalysis");
|
|
6
6
|
var ManifestResource_1 = require("./ManifestResource");
|
|
7
7
|
var PerTitle_1 = require("./PerTitle");
|
|
8
8
|
var Scheduling_1 = require("./Scheduling");
|
|
@@ -29,7 +29,7 @@ var StartEncodingRequest = /** @class */ (function () {
|
|
|
29
29
|
this.vodSmoothManifests = (0, Mapper_1.mapArray)(obj.vodSmoothManifests, ManifestResource_1.default);
|
|
30
30
|
this.manifestGenerator = (0, Mapper_1.map)(obj.manifestGenerator);
|
|
31
31
|
this.perTitle = (0, Mapper_1.map)(obj.perTitle, PerTitle_1.default);
|
|
32
|
-
this.
|
|
32
|
+
this.aiSceneAnalysis = (0, Mapper_1.map)(obj.aiSceneAnalysis, AiSceneAnalysis_1.default);
|
|
33
33
|
}
|
|
34
34
|
return StartEncodingRequest;
|
|
35
35
|
}());
|
package/dist/models/index.d.ts
CHANGED
|
@@ -39,10 +39,10 @@ export * from './AdaptationSetTypeResponse';
|
|
|
39
39
|
export * from './AdaptiveQuantMode';
|
|
40
40
|
export * from './AesEncryptionDrm';
|
|
41
41
|
export * from './AesEncryptionMethod';
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
42
|
+
export * from './AiSceneAnalysis';
|
|
43
|
+
export * from './AiSceneAnalysisAssetDescription';
|
|
44
|
+
export * from './AiSceneAnalysisAutomaticAdPlacement';
|
|
45
|
+
export * from './AiSceneAnalysisFeatures';
|
|
46
46
|
export * from './AiService';
|
|
47
47
|
export * from './AiServiceProvider';
|
|
48
48
|
export * from './AkamaiAccount';
|
|
@@ -180,6 +180,7 @@ export * from './BroadcastTsProgramConfiguration';
|
|
|
180
180
|
export * from './BroadcastTsSubtitleInputStreamConfiguration';
|
|
181
181
|
export * from './BroadcastTsTransportConfiguration';
|
|
182
182
|
export * from './BroadcastTsVideoInputStreamConfiguration';
|
|
183
|
+
export * from './BurnInSubtitleAssa';
|
|
183
184
|
export * from './BurnInSubtitleDvbSub';
|
|
184
185
|
export * from './BurnInSubtitleSrt';
|
|
185
186
|
export * from './CacheControl';
|
|
@@ -371,6 +372,7 @@ export * from './EncodingTemplateRequest';
|
|
|
371
372
|
export * from './EncodingTemplateResponse';
|
|
372
373
|
export * from './EncodingTemplateStartResponse';
|
|
373
374
|
export * from './EncodingTemplateType';
|
|
375
|
+
export * from './EncodingTemplateUrlResponse';
|
|
374
376
|
export * from './EncodingType';
|
|
375
377
|
export * from './EncryptionMode';
|
|
376
378
|
export * from './EnhancedDeinterlaceAutoEnable';
|
package/dist/models/index.js
CHANGED
|
@@ -55,10 +55,10 @@ __exportStar(require("./AdaptationSetTypeResponse"), exports);
|
|
|
55
55
|
__exportStar(require("./AdaptiveQuantMode"), exports);
|
|
56
56
|
__exportStar(require("./AesEncryptionDrm"), exports);
|
|
57
57
|
__exportStar(require("./AesEncryptionMethod"), exports);
|
|
58
|
-
__exportStar(require("./
|
|
59
|
-
__exportStar(require("./
|
|
60
|
-
__exportStar(require("./
|
|
61
|
-
__exportStar(require("./
|
|
58
|
+
__exportStar(require("./AiSceneAnalysis"), exports);
|
|
59
|
+
__exportStar(require("./AiSceneAnalysisAssetDescription"), exports);
|
|
60
|
+
__exportStar(require("./AiSceneAnalysisAutomaticAdPlacement"), exports);
|
|
61
|
+
__exportStar(require("./AiSceneAnalysisFeatures"), exports);
|
|
62
62
|
__exportStar(require("./AiService"), exports);
|
|
63
63
|
__exportStar(require("./AiServiceProvider"), exports);
|
|
64
64
|
__exportStar(require("./AkamaiAccount"), exports);
|
|
@@ -196,6 +196,7 @@ __exportStar(require("./BroadcastTsProgramConfiguration"), exports);
|
|
|
196
196
|
__exportStar(require("./BroadcastTsSubtitleInputStreamConfiguration"), exports);
|
|
197
197
|
__exportStar(require("./BroadcastTsTransportConfiguration"), exports);
|
|
198
198
|
__exportStar(require("./BroadcastTsVideoInputStreamConfiguration"), exports);
|
|
199
|
+
__exportStar(require("./BurnInSubtitleAssa"), exports);
|
|
199
200
|
__exportStar(require("./BurnInSubtitleDvbSub"), exports);
|
|
200
201
|
__exportStar(require("./BurnInSubtitleSrt"), exports);
|
|
201
202
|
__exportStar(require("./CacheControl"), exports);
|
|
@@ -387,6 +388,7 @@ __exportStar(require("./EncodingTemplateRequest"), exports);
|
|
|
387
388
|
__exportStar(require("./EncodingTemplateResponse"), exports);
|
|
388
389
|
__exportStar(require("./EncodingTemplateStartResponse"), exports);
|
|
389
390
|
__exportStar(require("./EncodingTemplateType"), exports);
|
|
391
|
+
__exportStar(require("./EncodingTemplateUrlResponse"), exports);
|
|
390
392
|
__exportStar(require("./EncodingType"), exports);
|
|
391
393
|
__exportStar(require("./EncryptionMode"), exports);
|
|
392
394
|
__exportStar(require("./EnhancedDeinterlaceAutoEnable"), exports);
|
package/package.json
CHANGED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import AiContentAnalysisFeatures from './AiContentAnalysisFeatures';
|
|
2
|
-
import AiService from './AiService';
|
|
3
|
-
/**
|
|
4
|
-
* @export
|
|
5
|
-
* @class AiContentAnalysis
|
|
6
|
-
*/
|
|
7
|
-
export declare class AiContentAnalysis {
|
|
8
|
-
/**
|
|
9
|
-
* AI service settings
|
|
10
|
-
* @type {AiService}
|
|
11
|
-
* @memberof AiContentAnalysis
|
|
12
|
-
*/
|
|
13
|
-
aiService?: AiService;
|
|
14
|
-
/**
|
|
15
|
-
* Features of the AI content analysis
|
|
16
|
-
* @type {AiContentAnalysisFeatures}
|
|
17
|
-
* @memberof AiContentAnalysis
|
|
18
|
-
*/
|
|
19
|
-
features?: AiContentAnalysisFeatures;
|
|
20
|
-
constructor(obj?: Partial<AiContentAnalysis>);
|
|
21
|
-
}
|
|
22
|
-
export default AiContentAnalysis;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AiContentAnalysis = void 0;
|
|
4
|
-
var Mapper_1 = require("../common/Mapper");
|
|
5
|
-
var AiContentAnalysisFeatures_1 = require("./AiContentAnalysisFeatures");
|
|
6
|
-
var AiService_1 = require("./AiService");
|
|
7
|
-
/**
|
|
8
|
-
* @export
|
|
9
|
-
* @class AiContentAnalysis
|
|
10
|
-
*/
|
|
11
|
-
var AiContentAnalysis = /** @class */ (function () {
|
|
12
|
-
function AiContentAnalysis(obj) {
|
|
13
|
-
if (!obj) {
|
|
14
|
-
return;
|
|
15
|
-
}
|
|
16
|
-
this.aiService = (0, Mapper_1.map)(obj.aiService, AiService_1.default);
|
|
17
|
-
this.features = (0, Mapper_1.map)(obj.features, AiContentAnalysisFeatures_1.default);
|
|
18
|
-
}
|
|
19
|
-
return AiContentAnalysis;
|
|
20
|
-
}());
|
|
21
|
-
exports.AiContentAnalysis = AiContentAnalysis;
|
|
22
|
-
exports.default = AiContentAnalysis;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import EncodingOutput from './EncodingOutput';
|
|
2
|
-
/**
|
|
3
|
-
* @export
|
|
4
|
-
* @class AiContentAnalysisAssetDescription
|
|
5
|
-
*/
|
|
6
|
-
export declare class AiContentAnalysisAssetDescription {
|
|
7
|
-
/**
|
|
8
|
-
* Name of the output json file
|
|
9
|
-
* @type {string}
|
|
10
|
-
* @memberof AiContentAnalysisAssetDescription
|
|
11
|
-
*/
|
|
12
|
-
filename?: string;
|
|
13
|
-
/**
|
|
14
|
-
* @type {EncodingOutput[]}
|
|
15
|
-
* @memberof AiContentAnalysisAssetDescription
|
|
16
|
-
*/
|
|
17
|
-
outputs?: EncodingOutput[];
|
|
18
|
-
constructor(obj?: Partial<AiContentAnalysisAssetDescription>);
|
|
19
|
-
}
|
|
20
|
-
export default AiContentAnalysisAssetDescription;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import AutomaticAdPlacementPosition from './AutomaticAdPlacementPosition';
|
|
2
|
-
/**
|
|
3
|
-
* @export
|
|
4
|
-
* @class AiContentAnalysisAutomaticAdPlacement
|
|
5
|
-
*/
|
|
6
|
-
export declare class AiContentAnalysisAutomaticAdPlacement {
|
|
7
|
-
/**
|
|
8
|
-
* Ad placements schedule
|
|
9
|
-
* @type {AutomaticAdPlacementPosition[]}
|
|
10
|
-
* @memberof AiContentAnalysisAutomaticAdPlacement
|
|
11
|
-
*/
|
|
12
|
-
schedule?: AutomaticAdPlacementPosition[];
|
|
13
|
-
constructor(obj?: Partial<AiContentAnalysisAutomaticAdPlacement>);
|
|
14
|
-
}
|
|
15
|
-
export default AiContentAnalysisAutomaticAdPlacement;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AiContentAnalysisAutomaticAdPlacement = void 0;
|
|
4
|
-
var Mapper_1 = require("../common/Mapper");
|
|
5
|
-
var AutomaticAdPlacementPosition_1 = require("./AutomaticAdPlacementPosition");
|
|
6
|
-
/**
|
|
7
|
-
* @export
|
|
8
|
-
* @class AiContentAnalysisAutomaticAdPlacement
|
|
9
|
-
*/
|
|
10
|
-
var AiContentAnalysisAutomaticAdPlacement = /** @class */ (function () {
|
|
11
|
-
function AiContentAnalysisAutomaticAdPlacement(obj) {
|
|
12
|
-
if (!obj) {
|
|
13
|
-
return;
|
|
14
|
-
}
|
|
15
|
-
this.schedule = (0, Mapper_1.mapArray)(obj.schedule, AutomaticAdPlacementPosition_1.default);
|
|
16
|
-
}
|
|
17
|
-
return AiContentAnalysisAutomaticAdPlacement;
|
|
18
|
-
}());
|
|
19
|
-
exports.AiContentAnalysisAutomaticAdPlacement = AiContentAnalysisAutomaticAdPlacement;
|
|
20
|
-
exports.default = AiContentAnalysisAutomaticAdPlacement;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import AiContentAnalysisAssetDescription from './AiContentAnalysisAssetDescription';
|
|
2
|
-
import AiContentAnalysisAutomaticAdPlacement from './AiContentAnalysisAutomaticAdPlacement';
|
|
3
|
-
/**
|
|
4
|
-
* @export
|
|
5
|
-
* @class AiContentAnalysisFeatures
|
|
6
|
-
*/
|
|
7
|
-
export declare class AiContentAnalysisFeatures {
|
|
8
|
-
/**
|
|
9
|
-
* AI content analysis will create an asset description file.
|
|
10
|
-
* @type {AiContentAnalysisAssetDescription}
|
|
11
|
-
* @memberof AiContentAnalysisFeatures
|
|
12
|
-
*/
|
|
13
|
-
assetDescription?: AiContentAnalysisAssetDescription;
|
|
14
|
-
/**
|
|
15
|
-
* Ad markers placed on detected scene changes and configured positions.
|
|
16
|
-
* @type {AiContentAnalysisAutomaticAdPlacement}
|
|
17
|
-
* @memberof AiContentAnalysisFeatures
|
|
18
|
-
*/
|
|
19
|
-
automaticAdPlacement?: AiContentAnalysisAutomaticAdPlacement;
|
|
20
|
-
constructor(obj?: Partial<AiContentAnalysisFeatures>);
|
|
21
|
-
}
|
|
22
|
-
export default AiContentAnalysisFeatures;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AiContentAnalysisFeatures = void 0;
|
|
4
|
-
var Mapper_1 = require("../common/Mapper");
|
|
5
|
-
var AiContentAnalysisAssetDescription_1 = require("./AiContentAnalysisAssetDescription");
|
|
6
|
-
var AiContentAnalysisAutomaticAdPlacement_1 = require("./AiContentAnalysisAutomaticAdPlacement");
|
|
7
|
-
/**
|
|
8
|
-
* @export
|
|
9
|
-
* @class AiContentAnalysisFeatures
|
|
10
|
-
*/
|
|
11
|
-
var AiContentAnalysisFeatures = /** @class */ (function () {
|
|
12
|
-
function AiContentAnalysisFeatures(obj) {
|
|
13
|
-
if (!obj) {
|
|
14
|
-
return;
|
|
15
|
-
}
|
|
16
|
-
this.assetDescription = (0, Mapper_1.map)(obj.assetDescription, AiContentAnalysisAssetDescription_1.default);
|
|
17
|
-
this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement, AiContentAnalysisAutomaticAdPlacement_1.default);
|
|
18
|
-
}
|
|
19
|
-
return AiContentAnalysisFeatures;
|
|
20
|
-
}());
|
|
21
|
-
exports.AiContentAnalysisFeatures = AiContentAnalysisFeatures;
|
|
22
|
-
exports.default = AiContentAnalysisFeatures;
|