@bitmovin/api-sdk 1.272.0 → 1.273.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 (55) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +713 -2
  3. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  4. package/dist/common/RestClient.js +1 -1
  5. package/dist/encoding/configurations/video/VideoApi.d.ts +2 -0
  6. package/dist/encoding/configurations/video/VideoApi.js +2 -0
  7. package/dist/encoding/configurations/video/h265v2/H265V2VideoConfigurationListQueryParams.d.ts +39 -0
  8. package/dist/encoding/configurations/video/h265v2/H265V2VideoConfigurationListQueryParams.js +36 -0
  9. package/dist/encoding/configurations/video/h265v2/H265v2Api.d.ts +43 -0
  10. package/dist/encoding/configurations/video/h265v2/H265v2Api.js +77 -0
  11. package/dist/models/Av1VideoConfiguration.d.ts +18 -0
  12. package/dist/models/Av1VideoConfiguration.js +3 -0
  13. package/dist/models/CodecConfigType.d.ts +2 -1
  14. package/dist/models/CodecConfigType.js +1 -0
  15. package/dist/models/CodecConfiguration.d.ts +2 -1
  16. package/dist/models/CodecConfiguration.js +2 -1
  17. package/dist/models/H265V2ConstantBitrateModeConfig.d.ts +22 -0
  18. package/dist/models/H265V2ConstantBitrateModeConfig.js +27 -0
  19. package/dist/models/H265V2MotionCompensatedTemporalFiltering.d.ts +10 -0
  20. package/dist/models/H265V2MotionCompensatedTemporalFiltering.js +14 -0
  21. package/dist/models/H265V2PerceptualEncodingMode.d.ts +9 -0
  22. package/dist/models/H265V2PerceptualEncodingMode.js +13 -0
  23. package/dist/models/H265V2PerceptualQualityModeConfig.d.ts +53 -0
  24. package/dist/models/H265V2PerceptualQualityModeConfig.js +32 -0
  25. package/dist/models/H265V2PresetConfiguration.d.ts +9 -0
  26. package/dist/models/H265V2PresetConfiguration.js +13 -0
  27. package/dist/models/H265V2RateControlModeConfig.d.ts +22 -0
  28. package/dist/models/H265V2RateControlModeConfig.js +24 -0
  29. package/dist/models/H265V2RateControlModeConfigType.d.ts +9 -0
  30. package/dist/models/H265V2RateControlModeConfigType.js +13 -0
  31. package/dist/models/H265V2VideoConfiguration.d.ts +50 -0
  32. package/dist/models/H265V2VideoConfiguration.js +32 -0
  33. package/dist/models/LiveEncodingHeartbeat.d.ts +7 -0
  34. package/dist/models/LiveEncodingHeartbeat.js +2 -0
  35. package/dist/models/LiveEncodingHeartbeatHlsManifestStats.d.ts +29 -0
  36. package/dist/models/LiveEncodingHeartbeatHlsManifestStats.js +23 -0
  37. package/dist/models/LiveEncodingHeartbeatManifestUpdate.d.ts +27 -0
  38. package/dist/models/LiveEncodingHeartbeatManifestUpdate.js +21 -0
  39. package/dist/models/LiveEncodingHeartbeatManifestUpdateLatencyStats.d.ts +33 -0
  40. package/dist/models/LiveEncodingHeartbeatManifestUpdateLatencyStats.js +22 -0
  41. package/dist/models/LiveEncodingHeartbeatManifests.d.ts +16 -0
  42. package/dist/models/LiveEncodingHeartbeatManifests.js +20 -0
  43. package/dist/models/LiveEncodingHeartbeatOutput.d.ts +23 -0
  44. package/dist/models/LiveEncodingHeartbeatOutput.js +22 -0
  45. package/dist/models/LiveEncodingHeartbeatSegments.d.ts +30 -0
  46. package/dist/models/LiveEncodingHeartbeatSegments.js +24 -0
  47. package/dist/models/LiveEncodingHeartbeatTotalProcessingOutlier.d.ts +21 -0
  48. package/dist/models/LiveEncodingHeartbeatTotalProcessingOutlier.js +20 -0
  49. package/dist/models/LiveEncodingHeartbeatTotalProcessingStatsMs.d.ts +33 -0
  50. package/dist/models/LiveEncodingHeartbeatTotalProcessingStatsMs.js +22 -0
  51. package/dist/models/LiveEncodingHeartbeatUploadOutlier.d.ts +27 -0
  52. package/dist/models/LiveEncodingHeartbeatUploadOutlier.js +21 -0
  53. package/dist/models/index.d.ts +17 -0
  54. package/dist/models/index.js +17 -0
  55. package/package.json +1 -1
@@ -0,0 +1,50 @@
1
+ import CodecConfigType from './CodecConfigType';
2
+ import H265DynamicRangeFormat from './H265DynamicRangeFormat';
3
+ import H265V2MotionCompensatedTemporalFiltering from './H265V2MotionCompensatedTemporalFiltering';
4
+ import H265V2PresetConfiguration from './H265V2PresetConfiguration';
5
+ import H265V2RateControlModeConfig from './H265V2RateControlModeConfig';
6
+ import VideoConfiguration from './VideoConfiguration';
7
+ /**
8
+ * @export
9
+ * @class H265V2VideoConfiguration
10
+ */
11
+ export declare class H265V2VideoConfiguration extends VideoConfiguration {
12
+ /**
13
+ * Discriminator property for CodecConfiguration
14
+ * @type {string}
15
+ * @memberof H265V2VideoConfiguration
16
+ */
17
+ readonly type: CodecConfigType;
18
+ /**
19
+ * Use a set of well defined configurations preset to support certain use cases. Can be overwritten with more specific values.
20
+ * @type {H265V2PresetConfiguration}
21
+ * @memberof H265V2VideoConfiguration
22
+ */
23
+ presetConfiguration?: H265V2PresetConfiguration;
24
+ /**
25
+ * Automatically configures the encoder for the given SDR/HDR format.
26
+ * @type {H265DynamicRangeFormat}
27
+ * @memberof H265V2VideoConfiguration
28
+ */
29
+ dynamicRangeFormat?: H265DynamicRangeFormat;
30
+ /**
31
+ * Rate control mode configuration. Used to Configure the Perceptual Encoding Mode Settings.
32
+ * @type {H265V2RateControlModeConfig}
33
+ * @memberof H265V2VideoConfiguration
34
+ */
35
+ rateControlModeConfig?: H265V2RateControlModeConfig;
36
+ /**
37
+ * Motion compensated temporal filtering mode.
38
+ * @type {H265V2MotionCompensatedTemporalFiltering}
39
+ * @memberof H265V2VideoConfiguration
40
+ */
41
+ motionCompensatedTemporalFiltering?: H265V2MotionCompensatedTemporalFiltering;
42
+ /**
43
+ * Set codec tier to high when true, main when false.
44
+ * @type {boolean}
45
+ * @memberof H265V2VideoConfiguration
46
+ */
47
+ levelHighTier?: boolean;
48
+ constructor(obj?: Partial<H265V2VideoConfiguration>);
49
+ }
50
+ export default H265V2VideoConfiguration;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.H265V2VideoConfiguration = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ const CodecConfigType_1 = require("./CodecConfigType");
6
+ const H265V2RateControlModeConfig_1 = require("./H265V2RateControlModeConfig");
7
+ const VideoConfiguration_1 = require("./VideoConfiguration");
8
+ /**
9
+ * @export
10
+ * @class H265V2VideoConfiguration
11
+ */
12
+ class H265V2VideoConfiguration extends VideoConfiguration_1.default {
13
+ constructor(obj) {
14
+ super(obj);
15
+ /**
16
+ * Discriminator property for CodecConfiguration
17
+ * @type {string}
18
+ * @memberof H265V2VideoConfiguration
19
+ */
20
+ this.type = CodecConfigType_1.default.H265V2;
21
+ if (!obj) {
22
+ return;
23
+ }
24
+ this.presetConfiguration = (0, Mapper_1.map)(obj.presetConfiguration);
25
+ this.dynamicRangeFormat = (0, Mapper_1.map)(obj.dynamicRangeFormat);
26
+ this.rateControlModeConfig = (0, Mapper_1.map)(obj.rateControlModeConfig, H265V2RateControlModeConfig_1.default);
27
+ this.motionCompensatedTemporalFiltering = (0, Mapper_1.map)(obj.motionCompensatedTemporalFiltering);
28
+ this.levelHighTier = (0, Mapper_1.map)(obj.levelHighTier);
29
+ }
30
+ }
31
+ exports.H265V2VideoConfiguration = H265V2VideoConfiguration;
32
+ exports.default = H265V2VideoConfiguration;
@@ -1,5 +1,6 @@
1
1
  import LiveEncodingHeartbeatEvent from './LiveEncodingHeartbeatEvent';
2
2
  import LiveEncodingHeartbeatIngest from './LiveEncodingHeartbeatIngest';
3
+ import LiveEncodingHeartbeatOutput from './LiveEncodingHeartbeatOutput';
3
4
  /**
4
5
  * Heartbeat data for a Live Encoding.
5
6
  * @export
@@ -24,6 +25,12 @@ export declare class LiveEncodingHeartbeat {
24
25
  * @memberof LiveEncodingHeartbeat
25
26
  */
26
27
  events?: LiveEncodingHeartbeatEvent[];
28
+ /**
29
+ * Output statistics for the live encoding
30
+ * @type {LiveEncodingHeartbeatOutput}
31
+ * @memberof LiveEncodingHeartbeat
32
+ */
33
+ output?: LiveEncodingHeartbeatOutput;
27
34
  constructor(obj?: Partial<LiveEncodingHeartbeat>);
28
35
  }
29
36
  export default LiveEncodingHeartbeat;
@@ -4,6 +4,7 @@ exports.LiveEncodingHeartbeat = void 0;
4
4
  const Mapper_1 = require("../common/Mapper");
5
5
  const LiveEncodingHeartbeatEvent_1 = require("./LiveEncodingHeartbeatEvent");
6
6
  const LiveEncodingHeartbeatIngest_1 = require("./LiveEncodingHeartbeatIngest");
7
+ const LiveEncodingHeartbeatOutput_1 = require("./LiveEncodingHeartbeatOutput");
7
8
  /**
8
9
  * Heartbeat data for a Live Encoding.
9
10
  * @export
@@ -17,6 +18,7 @@ class LiveEncodingHeartbeat {
17
18
  this.timestamp = (0, Mapper_1.map)(obj.timestamp, Date);
18
19
  this.ingest = (0, Mapper_1.map)(obj.ingest, LiveEncodingHeartbeatIngest_1.default);
19
20
  this.events = (0, Mapper_1.mapArray)(obj.events, LiveEncodingHeartbeatEvent_1.default);
21
+ this.output = (0, Mapper_1.map)(obj.output, LiveEncodingHeartbeatOutput_1.default);
20
22
  }
21
23
  }
22
24
  exports.LiveEncodingHeartbeat = LiveEncodingHeartbeat;
@@ -0,0 +1,29 @@
1
+ import LiveEncodingHeartbeatManifestUpdate from './LiveEncodingHeartbeatManifestUpdate';
2
+ import LiveEncodingHeartbeatManifestUpdateLatencyStats from './LiveEncodingHeartbeatManifestUpdateLatencyStats';
3
+ /**
4
+ * HLS manifest update monitoring data for a live encoding heartbeat.
5
+ * @export
6
+ * @class LiveEncodingHeartbeatHlsManifestStats
7
+ */
8
+ export declare class LiveEncodingHeartbeatHlsManifestStats {
9
+ /**
10
+ * Id of the HLS manifest these statistics belong to.
11
+ * @type {string}
12
+ * @memberof LiveEncodingHeartbeatHlsManifestStats
13
+ */
14
+ manifestId?: string;
15
+ /**
16
+ * Aggregate latency statistics over recorded manifest updates.
17
+ * @type {LiveEncodingHeartbeatManifestUpdateLatencyStats}
18
+ * @memberof LiveEncodingHeartbeatHlsManifestStats
19
+ */
20
+ manifestUpdateLatencyStats?: LiveEncodingHeartbeatManifestUpdateLatencyStats;
21
+ /**
22
+ * Per-manifest outlier-only (high-latency) manifest updates, ordered newest to oldest.
23
+ * @type {LiveEncodingHeartbeatManifestUpdate[]}
24
+ * @memberof LiveEncodingHeartbeatHlsManifestStats
25
+ */
26
+ manifestUpdates?: LiveEncodingHeartbeatManifestUpdate[];
27
+ constructor(obj?: Partial<LiveEncodingHeartbeatHlsManifestStats>);
28
+ }
29
+ export default LiveEncodingHeartbeatHlsManifestStats;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatHlsManifestStats = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ const LiveEncodingHeartbeatManifestUpdate_1 = require("./LiveEncodingHeartbeatManifestUpdate");
6
+ const LiveEncodingHeartbeatManifestUpdateLatencyStats_1 = require("./LiveEncodingHeartbeatManifestUpdateLatencyStats");
7
+ /**
8
+ * HLS manifest update monitoring data for a live encoding heartbeat.
9
+ * @export
10
+ * @class LiveEncodingHeartbeatHlsManifestStats
11
+ */
12
+ class LiveEncodingHeartbeatHlsManifestStats {
13
+ constructor(obj) {
14
+ if (!obj) {
15
+ return;
16
+ }
17
+ this.manifestId = (0, Mapper_1.map)(obj.manifestId);
18
+ this.manifestUpdateLatencyStats = (0, Mapper_1.map)(obj.manifestUpdateLatencyStats, LiveEncodingHeartbeatManifestUpdateLatencyStats_1.default);
19
+ this.manifestUpdates = (0, Mapper_1.mapArray)(obj.manifestUpdates, LiveEncodingHeartbeatManifestUpdate_1.default);
20
+ }
21
+ }
22
+ exports.LiveEncodingHeartbeatHlsManifestStats = LiveEncodingHeartbeatHlsManifestStats;
23
+ exports.default = LiveEncodingHeartbeatHlsManifestStats;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * A single media-advancing HLS manifest update.
3
+ * @export
4
+ * @class LiveEncodingHeartbeatManifestUpdate
5
+ */
6
+ export declare class LiveEncodingHeartbeatManifestUpdate {
7
+ /**
8
+ * Wall-clock time the media-advancing manifest update occured, returned as UTC in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
9
+ * @type {Date}
10
+ * @memberof LiveEncodingHeartbeatManifestUpdate
11
+ */
12
+ manifestUpdateWallClockTime?: Date;
13
+ /**
14
+ * Latest media presentation time across renditions (min of all playlists' stream progress), returned as UTC in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
15
+ * @type {Date}
16
+ * @memberof LiveEncodingHeartbeatManifestUpdate
17
+ */
18
+ latestMediaPresentationTime?: Date;
19
+ /**
20
+ * Manifest update latency in milliseconds (elapsed wall-clock minus media-time advanced).
21
+ * @type {number}
22
+ * @memberof LiveEncodingHeartbeatManifestUpdate
23
+ */
24
+ manifestUpdateLatency?: number;
25
+ constructor(obj?: Partial<LiveEncodingHeartbeatManifestUpdate>);
26
+ }
27
+ export default LiveEncodingHeartbeatManifestUpdate;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatManifestUpdate = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * A single media-advancing HLS manifest update.
7
+ * @export
8
+ * @class LiveEncodingHeartbeatManifestUpdate
9
+ */
10
+ class LiveEncodingHeartbeatManifestUpdate {
11
+ constructor(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.manifestUpdateWallClockTime = (0, Mapper_1.map)(obj.manifestUpdateWallClockTime, Date);
16
+ this.latestMediaPresentationTime = (0, Mapper_1.map)(obj.latestMediaPresentationTime, Date);
17
+ this.manifestUpdateLatency = (0, Mapper_1.map)(obj.manifestUpdateLatency);
18
+ }
19
+ }
20
+ exports.LiveEncodingHeartbeatManifestUpdate = LiveEncodingHeartbeatManifestUpdate;
21
+ exports.default = LiveEncodingHeartbeatManifestUpdate;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Aggregate statistics of HLS manifest update latencies.
3
+ * @export
4
+ * @class LiveEncodingHeartbeatManifestUpdateLatencyStats
5
+ */
6
+ export declare class LiveEncodingHeartbeatManifestUpdateLatencyStats {
7
+ /**
8
+ * Mean manifest update latency in milliseconds.
9
+ * @type {number}
10
+ * @memberof LiveEncodingHeartbeatManifestUpdateLatencyStats
11
+ */
12
+ mean?: number;
13
+ /**
14
+ * Median manifest update latency in milliseconds.
15
+ * @type {number}
16
+ * @memberof LiveEncodingHeartbeatManifestUpdateLatencyStats
17
+ */
18
+ median?: number;
19
+ /**
20
+ * Minimum manifest update latency in milliseconds.
21
+ * @type {number}
22
+ * @memberof LiveEncodingHeartbeatManifestUpdateLatencyStats
23
+ */
24
+ min?: number;
25
+ /**
26
+ * Maximum manifest update latency in milliseconds.
27
+ * @type {number}
28
+ * @memberof LiveEncodingHeartbeatManifestUpdateLatencyStats
29
+ */
30
+ max?: number;
31
+ constructor(obj?: Partial<LiveEncodingHeartbeatManifestUpdateLatencyStats>);
32
+ }
33
+ export default LiveEncodingHeartbeatManifestUpdateLatencyStats;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatManifestUpdateLatencyStats = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * Aggregate statistics of HLS manifest update latencies.
7
+ * @export
8
+ * @class LiveEncodingHeartbeatManifestUpdateLatencyStats
9
+ */
10
+ class LiveEncodingHeartbeatManifestUpdateLatencyStats {
11
+ constructor(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.mean = (0, Mapper_1.map)(obj.mean);
16
+ this.median = (0, Mapper_1.map)(obj.median);
17
+ this.min = (0, Mapper_1.map)(obj.min);
18
+ this.max = (0, Mapper_1.map)(obj.max);
19
+ }
20
+ }
21
+ exports.LiveEncodingHeartbeatManifestUpdateLatencyStats = LiveEncodingHeartbeatManifestUpdateLatencyStats;
22
+ exports.default = LiveEncodingHeartbeatManifestUpdateLatencyStats;
@@ -0,0 +1,16 @@
1
+ import LiveEncodingHeartbeatHlsManifestStats from './LiveEncodingHeartbeatHlsManifestStats';
2
+ /**
3
+ * Manifest statistics for a live encoding heartbeat.
4
+ * @export
5
+ * @class LiveEncodingHeartbeatManifests
6
+ */
7
+ export declare class LiveEncodingHeartbeatManifests {
8
+ /**
9
+ * Per-manifest HLS update statistics; one entry per HLS manifest.
10
+ * @type {LiveEncodingHeartbeatHlsManifestStats[]}
11
+ * @memberof LiveEncodingHeartbeatManifests
12
+ */
13
+ hls?: LiveEncodingHeartbeatHlsManifestStats[];
14
+ constructor(obj?: Partial<LiveEncodingHeartbeatManifests>);
15
+ }
16
+ export default LiveEncodingHeartbeatManifests;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatManifests = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ const LiveEncodingHeartbeatHlsManifestStats_1 = require("./LiveEncodingHeartbeatHlsManifestStats");
6
+ /**
7
+ * Manifest statistics for a live encoding heartbeat.
8
+ * @export
9
+ * @class LiveEncodingHeartbeatManifests
10
+ */
11
+ class LiveEncodingHeartbeatManifests {
12
+ constructor(obj) {
13
+ if (!obj) {
14
+ return;
15
+ }
16
+ this.hls = (0, Mapper_1.mapArray)(obj.hls, LiveEncodingHeartbeatHlsManifestStats_1.default);
17
+ }
18
+ }
19
+ exports.LiveEncodingHeartbeatManifests = LiveEncodingHeartbeatManifests;
20
+ exports.default = LiveEncodingHeartbeatManifests;
@@ -0,0 +1,23 @@
1
+ import LiveEncodingHeartbeatManifests from './LiveEncodingHeartbeatManifests';
2
+ import LiveEncodingHeartbeatSegments from './LiveEncodingHeartbeatSegments';
3
+ /**
4
+ * Output statistics for a live encoding heartbeat.
5
+ * @export
6
+ * @class LiveEncodingHeartbeatOutput
7
+ */
8
+ export declare class LiveEncodingHeartbeatOutput {
9
+ /**
10
+ * Manifest statistics for the live encoding output.
11
+ * @type {LiveEncodingHeartbeatManifests}
12
+ * @memberof LiveEncodingHeartbeatOutput
13
+ */
14
+ manifests?: LiveEncodingHeartbeatManifests;
15
+ /**
16
+ * Segment processing statistics for the live encoding output.
17
+ * @type {LiveEncodingHeartbeatSegments}
18
+ * @memberof LiveEncodingHeartbeatOutput
19
+ */
20
+ segments?: LiveEncodingHeartbeatSegments;
21
+ constructor(obj?: Partial<LiveEncodingHeartbeatOutput>);
22
+ }
23
+ export default LiveEncodingHeartbeatOutput;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatOutput = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ const LiveEncodingHeartbeatManifests_1 = require("./LiveEncodingHeartbeatManifests");
6
+ const LiveEncodingHeartbeatSegments_1 = require("./LiveEncodingHeartbeatSegments");
7
+ /**
8
+ * Output statistics for a live encoding heartbeat.
9
+ * @export
10
+ * @class LiveEncodingHeartbeatOutput
11
+ */
12
+ class LiveEncodingHeartbeatOutput {
13
+ constructor(obj) {
14
+ if (!obj) {
15
+ return;
16
+ }
17
+ this.manifests = (0, Mapper_1.map)(obj.manifests, LiveEncodingHeartbeatManifests_1.default);
18
+ this.segments = (0, Mapper_1.map)(obj.segments, LiveEncodingHeartbeatSegments_1.default);
19
+ }
20
+ }
21
+ exports.LiveEncodingHeartbeatOutput = LiveEncodingHeartbeatOutput;
22
+ exports.default = LiveEncodingHeartbeatOutput;
@@ -0,0 +1,30 @@
1
+ import LiveEncodingHeartbeatTotalProcessingOutlier from './LiveEncodingHeartbeatTotalProcessingOutlier';
2
+ import LiveEncodingHeartbeatTotalProcessingStatsMs from './LiveEncodingHeartbeatTotalProcessingStatsMs';
3
+ import LiveEncodingHeartbeatUploadOutlier from './LiveEncodingHeartbeatUploadOutlier';
4
+ /**
5
+ * Segment processing statistics for a live encoding heartbeat.
6
+ * @export
7
+ * @class LiveEncodingHeartbeatSegments
8
+ */
9
+ export declare class LiveEncodingHeartbeatSegments {
10
+ /**
11
+ * Aggregate statistics of per-segment total processing duration.
12
+ * @type {LiveEncodingHeartbeatTotalProcessingStatsMs}
13
+ * @memberof LiveEncodingHeartbeatSegments
14
+ */
15
+ totalProcessingStatsMs?: LiveEncodingHeartbeatTotalProcessingStatsMs;
16
+ /**
17
+ * Last 20 per-muxing uploads whose duration exceeded the upload-outlier threshold.
18
+ * @type {LiveEncodingHeartbeatUploadOutlier[]}
19
+ * @memberof LiveEncodingHeartbeatSegments
20
+ */
21
+ uploadOutliers?: LiveEncodingHeartbeatUploadOutlier[];
22
+ /**
23
+ * Last 20 segments whose total processing duration exceeded twice the rolling median.
24
+ * @type {LiveEncodingHeartbeatTotalProcessingOutlier[]}
25
+ * @memberof LiveEncodingHeartbeatSegments
26
+ */
27
+ totalProcessingOutliers?: LiveEncodingHeartbeatTotalProcessingOutlier[];
28
+ constructor(obj?: Partial<LiveEncodingHeartbeatSegments>);
29
+ }
30
+ export default LiveEncodingHeartbeatSegments;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatSegments = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ const LiveEncodingHeartbeatTotalProcessingOutlier_1 = require("./LiveEncodingHeartbeatTotalProcessingOutlier");
6
+ const LiveEncodingHeartbeatTotalProcessingStatsMs_1 = require("./LiveEncodingHeartbeatTotalProcessingStatsMs");
7
+ const LiveEncodingHeartbeatUploadOutlier_1 = require("./LiveEncodingHeartbeatUploadOutlier");
8
+ /**
9
+ * Segment processing statistics for a live encoding heartbeat.
10
+ * @export
11
+ * @class LiveEncodingHeartbeatSegments
12
+ */
13
+ class LiveEncodingHeartbeatSegments {
14
+ constructor(obj) {
15
+ if (!obj) {
16
+ return;
17
+ }
18
+ this.totalProcessingStatsMs = (0, Mapper_1.map)(obj.totalProcessingStatsMs, LiveEncodingHeartbeatTotalProcessingStatsMs_1.default);
19
+ this.uploadOutliers = (0, Mapper_1.mapArray)(obj.uploadOutliers, LiveEncodingHeartbeatUploadOutlier_1.default);
20
+ this.totalProcessingOutliers = (0, Mapper_1.mapArray)(obj.totalProcessingOutliers, LiveEncodingHeartbeatTotalProcessingOutlier_1.default);
21
+ }
22
+ }
23
+ exports.LiveEncodingHeartbeatSegments = LiveEncodingHeartbeatSegments;
24
+ exports.default = LiveEncodingHeartbeatSegments;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * A single segment whose total processing duration exceeded twice the rolling median.
3
+ * @export
4
+ * @class LiveEncodingHeartbeatTotalProcessingOutlier
5
+ */
6
+ export declare class LiveEncodingHeartbeatTotalProcessingOutlier {
7
+ /**
8
+ * Output segment number this measurement belongs to.
9
+ * @type {number}
10
+ * @memberof LiveEncodingHeartbeatTotalProcessingOutlier
11
+ */
12
+ segmentNumber?: number;
13
+ /**
14
+ * Total processing duration in milliseconds.
15
+ * @type {number}
16
+ * @memberof LiveEncodingHeartbeatTotalProcessingOutlier
17
+ */
18
+ durationMs?: number;
19
+ constructor(obj?: Partial<LiveEncodingHeartbeatTotalProcessingOutlier>);
20
+ }
21
+ export default LiveEncodingHeartbeatTotalProcessingOutlier;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatTotalProcessingOutlier = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * A single segment whose total processing duration exceeded twice the rolling median.
7
+ * @export
8
+ * @class LiveEncodingHeartbeatTotalProcessingOutlier
9
+ */
10
+ class LiveEncodingHeartbeatTotalProcessingOutlier {
11
+ constructor(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.segmentNumber = (0, Mapper_1.map)(obj.segmentNumber);
16
+ this.durationMs = (0, Mapper_1.map)(obj.durationMs);
17
+ }
18
+ }
19
+ exports.LiveEncodingHeartbeatTotalProcessingOutlier = LiveEncodingHeartbeatTotalProcessingOutlier;
20
+ exports.default = LiveEncodingHeartbeatTotalProcessingOutlier;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Aggregate statistics of per-segment total processing duration over a rolling window of completed segments.
3
+ * @export
4
+ * @class LiveEncodingHeartbeatTotalProcessingStatsMs
5
+ */
6
+ export declare class LiveEncodingHeartbeatTotalProcessingStatsMs {
7
+ /**
8
+ * Minimum total processing duration in milliseconds.
9
+ * @type {number}
10
+ * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs
11
+ */
12
+ min?: number;
13
+ /**
14
+ * Maximum total processing duration in milliseconds.
15
+ * @type {number}
16
+ * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs
17
+ */
18
+ max?: number;
19
+ /**
20
+ * Mean total processing duration in milliseconds.
21
+ * @type {number}
22
+ * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs
23
+ */
24
+ mean?: number;
25
+ /**
26
+ * Median total processing duration in milliseconds.
27
+ * @type {number}
28
+ * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs
29
+ */
30
+ median?: number;
31
+ constructor(obj?: Partial<LiveEncodingHeartbeatTotalProcessingStatsMs>);
32
+ }
33
+ export default LiveEncodingHeartbeatTotalProcessingStatsMs;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatTotalProcessingStatsMs = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * Aggregate statistics of per-segment total processing duration over a rolling window of completed segments.
7
+ * @export
8
+ * @class LiveEncodingHeartbeatTotalProcessingStatsMs
9
+ */
10
+ class LiveEncodingHeartbeatTotalProcessingStatsMs {
11
+ constructor(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.min = (0, Mapper_1.map)(obj.min);
16
+ this.max = (0, Mapper_1.map)(obj.max);
17
+ this.mean = (0, Mapper_1.map)(obj.mean);
18
+ this.median = (0, Mapper_1.map)(obj.median);
19
+ }
20
+ }
21
+ exports.LiveEncodingHeartbeatTotalProcessingStatsMs = LiveEncodingHeartbeatTotalProcessingStatsMs;
22
+ exports.default = LiveEncodingHeartbeatTotalProcessingStatsMs;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * A single per-muxing segment upload whose duration exceeded the upload-outlier threshold.
3
+ * @export
4
+ * @class LiveEncodingHeartbeatUploadOutlier
5
+ */
6
+ export declare class LiveEncodingHeartbeatUploadOutlier {
7
+ /**
8
+ * Output segment number this upload belongs to.
9
+ * @type {number}
10
+ * @memberof LiveEncodingHeartbeatUploadOutlier
11
+ */
12
+ segmentNumber?: number;
13
+ /**
14
+ * Identifier of the muxing whose upload was flagged.
15
+ * @type {string}
16
+ * @memberof LiveEncodingHeartbeatUploadOutlier
17
+ */
18
+ encodingReferenceMuxingId?: string;
19
+ /**
20
+ * Upload duration in milliseconds.
21
+ * @type {number}
22
+ * @memberof LiveEncodingHeartbeatUploadOutlier
23
+ */
24
+ durationMs?: number;
25
+ constructor(obj?: Partial<LiveEncodingHeartbeatUploadOutlier>);
26
+ }
27
+ export default LiveEncodingHeartbeatUploadOutlier;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiveEncodingHeartbeatUploadOutlier = void 0;
4
+ const Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * A single per-muxing segment upload whose duration exceeded the upload-outlier threshold.
7
+ * @export
8
+ * @class LiveEncodingHeartbeatUploadOutlier
9
+ */
10
+ class LiveEncodingHeartbeatUploadOutlier {
11
+ constructor(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.segmentNumber = (0, Mapper_1.map)(obj.segmentNumber);
16
+ this.encodingReferenceMuxingId = (0, Mapper_1.map)(obj.encodingReferenceMuxingId);
17
+ this.durationMs = (0, Mapper_1.map)(obj.durationMs);
18
+ }
19
+ }
20
+ exports.LiveEncodingHeartbeatUploadOutlier = LiveEncodingHeartbeatUploadOutlier;
21
+ exports.default = LiveEncodingHeartbeatUploadOutlier;
@@ -452,7 +452,15 @@ export * from './H264Trellis';
452
452
  export * from './H264VideoConfiguration';
453
453
  export * from './H265DynamicRangeFormat';
454
454
  export * from './H265PerTitleConfiguration';
455
+ export * from './H265V2ConstantBitrateModeConfig';
456
+ export * from './H265V2MotionCompensatedTemporalFiltering';
455
457
  export * from './H265V2PerTitleConfiguration';
458
+ export * from './H265V2PerceptualEncodingMode';
459
+ export * from './H265V2PerceptualQualityModeConfig';
460
+ export * from './H265V2PresetConfiguration';
461
+ export * from './H265V2RateControlModeConfig';
462
+ export * from './H265V2RateControlModeConfigType';
463
+ export * from './H265V2VideoConfiguration';
456
464
  export * from './H265VideoConfiguration';
457
465
  export * from './HeAacV1AudioConfiguration';
458
466
  export * from './HeAacV1Signaling';
@@ -521,9 +529,18 @@ export * from './LiveEncodingHeartbeat';
521
529
  export * from './LiveEncodingHeartbeatEvent';
522
530
  export * from './LiveEncodingHeartbeatEventDetails';
523
531
  export * from './LiveEncodingHeartbeatEventType';
532
+ export * from './LiveEncodingHeartbeatHlsManifestStats';
524
533
  export * from './LiveEncodingHeartbeatIngest';
525
534
  export * from './LiveEncodingHeartbeatIngestPoint';
526
535
  export * from './LiveEncodingHeartbeatIngestStream';
536
+ export * from './LiveEncodingHeartbeatManifestUpdate';
537
+ export * from './LiveEncodingHeartbeatManifestUpdateLatencyStats';
538
+ export * from './LiveEncodingHeartbeatManifests';
539
+ export * from './LiveEncodingHeartbeatOutput';
540
+ export * from './LiveEncodingHeartbeatSegments';
541
+ export * from './LiveEncodingHeartbeatTotalProcessingOutlier';
542
+ export * from './LiveEncodingHeartbeatTotalProcessingStatsMs';
543
+ export * from './LiveEncodingHeartbeatUploadOutlier';
527
544
  export * from './LiveEncodingHeartbeatUrlResponse';
528
545
  export * from './LiveEncodingHeartbeatWebhook';
529
546
  export * from './LiveEncodingOptionsStatistics';
@@ -468,7 +468,15 @@ __exportStar(require("./H264Trellis"), exports);
468
468
  __exportStar(require("./H264VideoConfiguration"), exports);
469
469
  __exportStar(require("./H265DynamicRangeFormat"), exports);
470
470
  __exportStar(require("./H265PerTitleConfiguration"), exports);
471
+ __exportStar(require("./H265V2ConstantBitrateModeConfig"), exports);
472
+ __exportStar(require("./H265V2MotionCompensatedTemporalFiltering"), exports);
471
473
  __exportStar(require("./H265V2PerTitleConfiguration"), exports);
474
+ __exportStar(require("./H265V2PerceptualEncodingMode"), exports);
475
+ __exportStar(require("./H265V2PerceptualQualityModeConfig"), exports);
476
+ __exportStar(require("./H265V2PresetConfiguration"), exports);
477
+ __exportStar(require("./H265V2RateControlModeConfig"), exports);
478
+ __exportStar(require("./H265V2RateControlModeConfigType"), exports);
479
+ __exportStar(require("./H265V2VideoConfiguration"), exports);
472
480
  __exportStar(require("./H265VideoConfiguration"), exports);
473
481
  __exportStar(require("./HeAacV1AudioConfiguration"), exports);
474
482
  __exportStar(require("./HeAacV1Signaling"), exports);
@@ -537,9 +545,18 @@ __exportStar(require("./LiveEncodingHeartbeat"), exports);
537
545
  __exportStar(require("./LiveEncodingHeartbeatEvent"), exports);
538
546
  __exportStar(require("./LiveEncodingHeartbeatEventDetails"), exports);
539
547
  __exportStar(require("./LiveEncodingHeartbeatEventType"), exports);
548
+ __exportStar(require("./LiveEncodingHeartbeatHlsManifestStats"), exports);
540
549
  __exportStar(require("./LiveEncodingHeartbeatIngest"), exports);
541
550
  __exportStar(require("./LiveEncodingHeartbeatIngestPoint"), exports);
542
551
  __exportStar(require("./LiveEncodingHeartbeatIngestStream"), exports);
552
+ __exportStar(require("./LiveEncodingHeartbeatManifestUpdate"), exports);
553
+ __exportStar(require("./LiveEncodingHeartbeatManifestUpdateLatencyStats"), exports);
554
+ __exportStar(require("./LiveEncodingHeartbeatManifests"), exports);
555
+ __exportStar(require("./LiveEncodingHeartbeatOutput"), exports);
556
+ __exportStar(require("./LiveEncodingHeartbeatSegments"), exports);
557
+ __exportStar(require("./LiveEncodingHeartbeatTotalProcessingOutlier"), exports);
558
+ __exportStar(require("./LiveEncodingHeartbeatTotalProcessingStatsMs"), exports);
559
+ __exportStar(require("./LiveEncodingHeartbeatUploadOutlier"), exports);
543
560
  __exportStar(require("./LiveEncodingHeartbeatUrlResponse"), exports);
544
561
  __exportStar(require("./LiveEncodingHeartbeatWebhook"), exports);
545
562
  __exportStar(require("./LiveEncodingOptionsStatistics"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.272.0",
3
+ "version": "1.273.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [