@bitmovin/api-sdk 1.206.0 → 1.208.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.
Files changed (37) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +408 -8
  3. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  4. package/dist/common/RestClient.js +1 -1
  5. package/dist/encoding/EncodingApi.d.ts +2 -0
  6. package/dist/encoding/EncodingApi.js +2 -0
  7. package/dist/encoding/encodings/streams/captions/cea/CeaApi.d.ts +2 -0
  8. package/dist/encoding/encodings/streams/captions/cea/CeaApi.js +2 -0
  9. package/dist/encoding/encodings/streams/captions/cea/srt/SrtApi.d.ts +53 -0
  10. package/dist/encoding/encodings/streams/captions/cea/srt/SrtApi.js +117 -0
  11. package/dist/encoding/encodings/streams/captions/cea/srt/SrtToCea608708CaptionListQueryParams.d.ts +28 -0
  12. package/dist/encoding/encodings/streams/captions/cea/srt/SrtToCea608708CaptionListQueryParams.js +29 -0
  13. package/dist/encoding/encodings/streams/captions/cea/srt/customdata/CustomdataApi.d.ts +21 -0
  14. package/dist/encoding/encodings/streams/captions/cea/srt/customdata/CustomdataApi.js +52 -0
  15. package/dist/encoding/templates/TemplatesApi.d.ts +19 -0
  16. package/dist/encoding/templates/TemplatesApi.js +45 -0
  17. package/dist/models/Av1PerTitleConfiguration.d.ts +0 -6
  18. package/dist/models/Av1PerTitleConfiguration.js +0 -2
  19. package/dist/models/DolbyVisionProfile.d.ts +0 -1
  20. package/dist/models/DolbyVisionProfile.js +0 -1
  21. package/dist/models/EncodingTemplateRequest.d.ts +9 -0
  22. package/dist/models/EncodingTemplateRequest.js +18 -0
  23. package/dist/models/EncodingTemplateStartResponse.d.ts +14 -0
  24. package/dist/models/EncodingTemplateStartResponse.js +19 -0
  25. package/dist/models/H264PerTitleConfiguration.d.ts +0 -6
  26. package/dist/models/H264PerTitleConfiguration.js +0 -1
  27. package/dist/models/H265PerTitleConfiguration.d.ts +0 -6
  28. package/dist/models/H265PerTitleConfiguration.js +0 -1
  29. package/dist/models/PerTitleConfiguration.d.ts +12 -0
  30. package/dist/models/PerTitleConfiguration.js +2 -0
  31. package/dist/models/SrtToCea608708Caption.d.ts +30 -0
  32. package/dist/models/SrtToCea608708Caption.js +41 -0
  33. package/dist/models/Vp9PerTitleConfiguration.d.ts +0 -6
  34. package/dist/models/Vp9PerTitleConfiguration.js +0 -2
  35. package/dist/models/index.d.ts +3 -0
  36. package/dist/models/index.js +3 -0
  37. package/package.json +1 -1
@@ -0,0 +1,30 @@
1
+ import BitmovinResource from './BitmovinResource';
2
+ import CaptionCharacterEncoding from './CaptionCharacterEncoding';
3
+ import Cea608ChannelType from './Cea608ChannelType';
4
+ import InputPath from './InputPath';
5
+ /**
6
+ * @export
7
+ * @class SrtToCea608708Caption
8
+ */
9
+ export declare class SrtToCea608708Caption extends BitmovinResource {
10
+ /**
11
+ * Input location of the SRT file (required)
12
+ * @type {InputPath}
13
+ * @memberof SrtToCea608708Caption
14
+ */
15
+ input?: InputPath;
16
+ /**
17
+ * The channel number to embed the CEA subtitles in (required)
18
+ * @type {Cea608ChannelType}
19
+ * @memberof SrtToCea608708Caption
20
+ */
21
+ ccChannel?: Cea608ChannelType;
22
+ /**
23
+ * Character encoding of the input SRT file (required)
24
+ * @type {CaptionCharacterEncoding}
25
+ * @memberof SrtToCea608708Caption
26
+ */
27
+ characterEncoding?: CaptionCharacterEncoding;
28
+ constructor(obj?: Partial<SrtToCea608708Caption>);
29
+ }
30
+ export default SrtToCea608708Caption;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.SrtToCea608708Caption = void 0;
19
+ var Mapper_1 = require("../common/Mapper");
20
+ var BitmovinResource_1 = require("./BitmovinResource");
21
+ var InputPath_1 = require("./InputPath");
22
+ /**
23
+ * @export
24
+ * @class SrtToCea608708Caption
25
+ */
26
+ var SrtToCea608708Caption = /** @class */ (function (_super) {
27
+ __extends(SrtToCea608708Caption, _super);
28
+ function SrtToCea608708Caption(obj) {
29
+ var _this = _super.call(this, obj) || this;
30
+ if (!obj) {
31
+ return _this;
32
+ }
33
+ _this.input = (0, Mapper_1.map)(obj.input, InputPath_1.default);
34
+ _this.ccChannel = (0, Mapper_1.map)(obj.ccChannel);
35
+ _this.characterEncoding = (0, Mapper_1.map)(obj.characterEncoding);
36
+ return _this;
37
+ }
38
+ return SrtToCea608708Caption;
39
+ }(BitmovinResource_1.default));
40
+ exports.SrtToCea608708Caption = SrtToCea608708Caption;
41
+ exports.default = SrtToCea608708Caption;
@@ -4,12 +4,6 @@ import PerTitleConfiguration from './PerTitleConfiguration';
4
4
  * @class Vp9PerTitleConfiguration
5
5
  */
6
6
  export declare class Vp9PerTitleConfiguration extends PerTitleConfiguration {
7
- /**
8
- * Desired target quality of the highest representation expressed as CRF value
9
- * @type {number}
10
- * @memberof Vp9PerTitleConfiguration
11
- */
12
- targetQualityCrf?: number;
13
7
  constructor(obj?: Partial<Vp9PerTitleConfiguration>);
14
8
  }
15
9
  export default Vp9PerTitleConfiguration;
@@ -16,7 +16,6 @@ var __extends = (this && this.__extends) || (function () {
16
16
  })();
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.Vp9PerTitleConfiguration = void 0;
19
- var Mapper_1 = require("../common/Mapper");
20
19
  var PerTitleConfiguration_1 = require("./PerTitleConfiguration");
21
20
  /**
22
21
  * @export
@@ -29,7 +28,6 @@ var Vp9PerTitleConfiguration = /** @class */ (function (_super) {
29
28
  if (!obj) {
30
29
  return _this;
31
30
  }
32
- _this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
33
31
  return _this;
34
32
  }
35
33
  return Vp9PerTitleConfiguration;
@@ -349,6 +349,8 @@ export * from './EncodingStats';
349
349
  export * from './EncodingStreamInput';
350
350
  export * from './EncodingStreamInputDetails';
351
351
  export * from './EncodingTemplate';
352
+ export * from './EncodingTemplateRequest';
353
+ export * from './EncodingTemplateStartResponse';
352
354
  export * from './EncodingType';
353
355
  export * from './EncryptionMode';
354
356
  export * from './EnhancedDeinterlaceAutoEnable';
@@ -685,6 +687,7 @@ export * from './SrtStatisticRecv';
685
687
  export * from './SrtStatisticSend';
686
688
  export * from './SrtStatisticWindow';
687
689
  export * from './SrtStatistics';
690
+ export * from './SrtToCea608708Caption';
688
691
  export * from './StandardMediaInfo';
689
692
  export * from './StartEncodingRequest';
690
693
  export * from './StartLiveChannelEncodingRequest';
@@ -365,6 +365,8 @@ __exportStar(require("./EncodingStats"), exports);
365
365
  __exportStar(require("./EncodingStreamInput"), exports);
366
366
  __exportStar(require("./EncodingStreamInputDetails"), exports);
367
367
  __exportStar(require("./EncodingTemplate"), exports);
368
+ __exportStar(require("./EncodingTemplateRequest"), exports);
369
+ __exportStar(require("./EncodingTemplateStartResponse"), exports);
368
370
  __exportStar(require("./EncodingType"), exports);
369
371
  __exportStar(require("./EncryptionMode"), exports);
370
372
  __exportStar(require("./EnhancedDeinterlaceAutoEnable"), exports);
@@ -701,6 +703,7 @@ __exportStar(require("./SrtStatisticRecv"), exports);
701
703
  __exportStar(require("./SrtStatisticSend"), exports);
702
704
  __exportStar(require("./SrtStatisticWindow"), exports);
703
705
  __exportStar(require("./SrtStatistics"), exports);
706
+ __exportStar(require("./SrtToCea608708Caption"), exports);
704
707
  __exportStar(require("./StandardMediaInfo"), exports);
705
708
  __exportStar(require("./StartEncodingRequest"), exports);
706
709
  __exportStar(require("./StartLiveChannelEncodingRequest"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.206.0",
3
+ "version": "1.208.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [