@bitmovin/api-sdk 1.198.0 → 1.199.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.
@@ -1,85 +0,0 @@
1
- import ConvertSccCaption from './ConvertSccCaption';
2
- import Encoding from './Encoding';
3
- import HistoryMuxing from './HistoryMuxing';
4
- import HistoryStream from './HistoryStream';
5
- import Keyframe from './Keyframe';
6
- import LiveEncoding from './LiveEncoding';
7
- import SidecarFile from './SidecarFile';
8
- import StartEncodingRequest from './StartEncodingRequest';
9
- import StartLiveEncodingRequest from './StartLiveEncodingRequest';
10
- import StreamInput from './StreamInput';
11
- import Task from './Task';
12
- import TransferRetry from './TransferRetry';
13
- /**
14
- * @export
15
- * @class HistoryEncoding
16
- */
17
- export declare class HistoryEncoding {
18
- /**
19
- * Encoding
20
- * @type {Encoding}
21
- * @memberof HistoryEncoding
22
- */
23
- encoding?: Encoding;
24
- /**
25
- * Live Details
26
- * @type {LiveEncoding}
27
- * @memberof HistoryEncoding
28
- */
29
- live?: LiveEncoding;
30
- /**
31
- * VOD Encoding Start Request
32
- * @type {StartEncodingRequest}
33
- * @memberof HistoryEncoding
34
- */
35
- vodStartReqeust?: StartEncodingRequest;
36
- /**
37
- * Live Encoding Start Request
38
- * @type {StartLiveEncodingRequest}
39
- * @memberof HistoryEncoding
40
- */
41
- liveStartReqeust?: StartLiveEncodingRequest;
42
- /**
43
- * Encoding Status
44
- * @type {Task}
45
- * @memberof HistoryEncoding
46
- */
47
- status?: Task;
48
- /**
49
- * @type {StreamInput[]}
50
- * @memberof HistoryEncoding
51
- */
52
- inputStreams?: StreamInput[];
53
- /**
54
- * @type {HistoryStream[]}
55
- * @memberof HistoryEncoding
56
- */
57
- streams?: HistoryStream[];
58
- /**
59
- * @type {HistoryMuxing[]}
60
- * @memberof HistoryEncoding
61
- */
62
- muxings?: HistoryMuxing[];
63
- /**
64
- * @type {Keyframe[]}
65
- * @memberof HistoryEncoding
66
- */
67
- keyFrames?: Keyframe[];
68
- /**
69
- * @type {SidecarFile[]}
70
- * @memberof HistoryEncoding
71
- */
72
- sidecarFiles?: SidecarFile[];
73
- /**
74
- * @type {TransferRetry[]}
75
- * @memberof HistoryEncoding
76
- */
77
- transferRetries?: TransferRetry[];
78
- /**
79
- * @type {ConvertSccCaption[]}
80
- * @memberof HistoryEncoding
81
- */
82
- convertSccCaptions?: ConvertSccCaption[];
83
- constructor(obj?: Partial<HistoryEncoding>);
84
- }
85
- export default HistoryEncoding;
@@ -1,42 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HistoryEncoding = void 0;
4
- var Mapper_1 = require("../common/Mapper");
5
- var ConvertSccCaption_1 = require("./ConvertSccCaption");
6
- var Encoding_1 = require("./Encoding");
7
- var HistoryMuxing_1 = require("./HistoryMuxing");
8
- var HistoryStream_1 = require("./HistoryStream");
9
- var Keyframe_1 = require("./Keyframe");
10
- var LiveEncoding_1 = require("./LiveEncoding");
11
- var SidecarFile_1 = require("./SidecarFile");
12
- var StartEncodingRequest_1 = require("./StartEncodingRequest");
13
- var StartLiveEncodingRequest_1 = require("./StartLiveEncodingRequest");
14
- var StreamInput_1 = require("./StreamInput");
15
- var Task_1 = require("./Task");
16
- var TransferRetry_1 = require("./TransferRetry");
17
- /**
18
- * @export
19
- * @class HistoryEncoding
20
- */
21
- var HistoryEncoding = /** @class */ (function () {
22
- function HistoryEncoding(obj) {
23
- if (!obj) {
24
- return;
25
- }
26
- this.encoding = (0, Mapper_1.map)(obj.encoding, Encoding_1.default);
27
- this.live = (0, Mapper_1.map)(obj.live, LiveEncoding_1.default);
28
- this.vodStartReqeust = (0, Mapper_1.map)(obj.vodStartReqeust, StartEncodingRequest_1.default);
29
- this.liveStartReqeust = (0, Mapper_1.map)(obj.liveStartReqeust, StartLiveEncodingRequest_1.default);
30
- this.status = (0, Mapper_1.map)(obj.status, Task_1.default);
31
- this.inputStreams = (0, Mapper_1.mapArray)(obj.inputStreams, StreamInput_1.default);
32
- this.streams = (0, Mapper_1.mapArray)(obj.streams, HistoryStream_1.default);
33
- this.muxings = (0, Mapper_1.mapArray)(obj.muxings, HistoryMuxing_1.default);
34
- this.keyFrames = (0, Mapper_1.mapArray)(obj.keyFrames, Keyframe_1.default);
35
- this.sidecarFiles = (0, Mapper_1.mapArray)(obj.sidecarFiles, SidecarFile_1.default);
36
- this.transferRetries = (0, Mapper_1.mapArray)(obj.transferRetries, TransferRetry_1.default);
37
- this.convertSccCaptions = (0, Mapper_1.mapArray)(obj.convertSccCaptions, ConvertSccCaption_1.default);
38
- }
39
- return HistoryEncoding;
40
- }());
41
- exports.HistoryEncoding = HistoryEncoding;
42
- exports.default = HistoryEncoding;
@@ -1,69 +0,0 @@
1
- import BroadcastTsMuxingInformation from './BroadcastTsMuxingInformation';
2
- import Drm from './Drm';
3
- import Fmp4MuxingInformation from './Fmp4MuxingInformation';
4
- import Mp3MuxingInformation from './Mp3MuxingInformation';
5
- import Mp4MuxingInformation from './Mp4MuxingInformation';
6
- import Muxing from './Muxing';
7
- import PackedAudioMuxingInformation from './PackedAudioMuxingInformation';
8
- import ProgressiveMovMuxingInformation from './ProgressiveMovMuxingInformation';
9
- import ProgressiveTsMuxingInformation from './ProgressiveTsMuxingInformation';
10
- import ProgressiveWebmMuxingInformation from './ProgressiveWebmMuxingInformation';
11
- /**
12
- * @export
13
- * @class HistoryMuxing
14
- */
15
- export declare class HistoryMuxing {
16
- /**
17
- * Muxing
18
- * @type {Muxing}
19
- * @memberof HistoryMuxing
20
- */
21
- muxing?: Muxing;
22
- /**
23
- * @type {Drm[]}
24
- * @memberof HistoryMuxing
25
- */
26
- drms?: Drm[];
27
- /**
28
- * @type {BroadcastTsMuxingInformation}
29
- * @memberof HistoryMuxing
30
- */
31
- broadcastTsMuxingInformation?: BroadcastTsMuxingInformation;
32
- /**
33
- * @type {Fmp4MuxingInformation}
34
- * @memberof HistoryMuxing
35
- */
36
- fmp4MuxingInformation?: Fmp4MuxingInformation;
37
- /**
38
- * @type {Mp3MuxingInformation}
39
- * @memberof HistoryMuxing
40
- */
41
- mp3MuxingInformation?: Mp3MuxingInformation;
42
- /**
43
- * @type {Mp4MuxingInformation}
44
- * @memberof HistoryMuxing
45
- */
46
- mp4MuxingInformation?: Mp4MuxingInformation;
47
- /**
48
- * @type {PackedAudioMuxingInformation}
49
- * @memberof HistoryMuxing
50
- */
51
- packedAudioMuxingInformation?: PackedAudioMuxingInformation;
52
- /**
53
- * @type {ProgressiveMovMuxingInformation}
54
- * @memberof HistoryMuxing
55
- */
56
- progressiveMovMuxingInformation?: ProgressiveMovMuxingInformation;
57
- /**
58
- * @type {ProgressiveTsMuxingInformation}
59
- * @memberof HistoryMuxing
60
- */
61
- progressiveTsMuxingInformation?: ProgressiveTsMuxingInformation;
62
- /**
63
- * @type {ProgressiveWebmMuxingInformation}
64
- * @memberof HistoryMuxing
65
- */
66
- progressiveWebmMuxingInformation?: ProgressiveWebmMuxingInformation;
67
- constructor(obj?: Partial<HistoryMuxing>);
68
- }
69
- export default HistoryMuxing;
@@ -1,38 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HistoryMuxing = void 0;
4
- var Mapper_1 = require("../common/Mapper");
5
- var BroadcastTsMuxingInformation_1 = require("./BroadcastTsMuxingInformation");
6
- var Drm_1 = require("./Drm");
7
- var Fmp4MuxingInformation_1 = require("./Fmp4MuxingInformation");
8
- var Mp3MuxingInformation_1 = require("./Mp3MuxingInformation");
9
- var Mp4MuxingInformation_1 = require("./Mp4MuxingInformation");
10
- var Muxing_1 = require("./Muxing");
11
- var PackedAudioMuxingInformation_1 = require("./PackedAudioMuxingInformation");
12
- var ProgressiveMovMuxingInformation_1 = require("./ProgressiveMovMuxingInformation");
13
- var ProgressiveTsMuxingInformation_1 = require("./ProgressiveTsMuxingInformation");
14
- var ProgressiveWebmMuxingInformation_1 = require("./ProgressiveWebmMuxingInformation");
15
- /**
16
- * @export
17
- * @class HistoryMuxing
18
- */
19
- var HistoryMuxing = /** @class */ (function () {
20
- function HistoryMuxing(obj) {
21
- if (!obj) {
22
- return;
23
- }
24
- this.muxing = (0, Mapper_1.map)(obj.muxing, Muxing_1.default);
25
- this.drms = (0, Mapper_1.mapArray)(obj.drms, Drm_1.default);
26
- this.broadcastTsMuxingInformation = (0, Mapper_1.map)(obj.broadcastTsMuxingInformation, BroadcastTsMuxingInformation_1.default);
27
- this.fmp4MuxingInformation = (0, Mapper_1.map)(obj.fmp4MuxingInformation, Fmp4MuxingInformation_1.default);
28
- this.mp3MuxingInformation = (0, Mapper_1.map)(obj.mp3MuxingInformation, Mp3MuxingInformation_1.default);
29
- this.mp4MuxingInformation = (0, Mapper_1.map)(obj.mp4MuxingInformation, Mp4MuxingInformation_1.default);
30
- this.packedAudioMuxingInformation = (0, Mapper_1.map)(obj.packedAudioMuxingInformation, PackedAudioMuxingInformation_1.default);
31
- this.progressiveMovMuxingInformation = (0, Mapper_1.map)(obj.progressiveMovMuxingInformation, ProgressiveMovMuxingInformation_1.default);
32
- this.progressiveTsMuxingInformation = (0, Mapper_1.map)(obj.progressiveTsMuxingInformation, ProgressiveTsMuxingInformation_1.default);
33
- this.progressiveWebmMuxingInformation = (0, Mapper_1.map)(obj.progressiveWebmMuxingInformation, ProgressiveWebmMuxingInformation_1.default);
34
- }
35
- return HistoryMuxing;
36
- }());
37
- exports.HistoryMuxing = HistoryMuxing;
38
- exports.default = HistoryMuxing;
@@ -1,85 +0,0 @@
1
- import Bif from './Bif';
2
- import BurnInSubtitleDvbSub from './BurnInSubtitleDvbSub';
3
- import BurnInSubtitleSrt from './BurnInSubtitleSrt';
4
- import DolbyVisionMetadata from './DolbyVisionMetadata';
5
- import NexGuardFileMarker from './NexGuardFileMarker';
6
- import PsnrQualityMetric from './PsnrQualityMetric';
7
- import SccCaption from './SccCaption';
8
- import Sprite from './Sprite';
9
- import Stream from './Stream';
10
- import StreamFilter from './StreamFilter';
11
- import Thumbnail from './Thumbnail';
12
- /**
13
- * @export
14
- * @class HistoryStream
15
- */
16
- export declare class HistoryStream {
17
- /**
18
- * Stream
19
- * @type {Stream}
20
- * @memberof HistoryStream
21
- */
22
- stream?: Stream;
23
- /**
24
- * List of stream filter configurations
25
- * @type {StreamFilter[]}
26
- * @memberof HistoryStream
27
- */
28
- filters?: StreamFilter[];
29
- /**
30
- * List of Burn-In DVB-SUB subtitles
31
- * @type {BurnInSubtitleDvbSub[]}
32
- * @memberof HistoryStream
33
- */
34
- burnInSubtitleDvbSubs?: BurnInSubtitleDvbSub[];
35
- /**
36
- * List of burn-in SRT configurations
37
- * @type {BurnInSubtitleSrt[]}
38
- * @memberof HistoryStream
39
- */
40
- burnInSubtitleSrtSubs?: BurnInSubtitleSrt[];
41
- /**
42
- * Nexguard file marker watermarking configuration
43
- * @type {NexGuardFileMarker}
44
- * @memberof HistoryStream
45
- */
46
- nexGuardFileMarker?: NexGuardFileMarker;
47
- /**
48
- * List of caption configurations
49
- * @type {SccCaption[]}
50
- * @memberof HistoryStream
51
- */
52
- sccCaptions?: SccCaption[];
53
- /**
54
- * List of bif configurations
55
- * @type {Bif[]}
56
- * @memberof HistoryStream
57
- */
58
- bifs?: Bif[];
59
- /**
60
- * List of Dolby Vision Metadata configurations
61
- * @type {DolbyVisionMetadata[]}
62
- * @memberof HistoryStream
63
- */
64
- dolbyVisionMetadata?: DolbyVisionMetadata[];
65
- /**
66
- * List of Thumbnail configurations
67
- * @type {Thumbnail[]}
68
- * @memberof HistoryStream
69
- */
70
- thumbnails?: Thumbnail[];
71
- /**
72
- * List of Sprite configurations
73
- * @type {Sprite[]}
74
- * @memberof HistoryStream
75
- */
76
- sprites?: Sprite[];
77
- /**
78
- * List of PSNR quality metrics
79
- * @type {PsnrQualityMetric[]}
80
- * @memberof HistoryStream
81
- */
82
- psnrMetrics?: PsnrQualityMetric[];
83
- constructor(obj?: Partial<HistoryStream>);
84
- }
85
- export default HistoryStream;
@@ -1,40 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HistoryStream = void 0;
4
- var Mapper_1 = require("../common/Mapper");
5
- var Bif_1 = require("./Bif");
6
- var BurnInSubtitleDvbSub_1 = require("./BurnInSubtitleDvbSub");
7
- var BurnInSubtitleSrt_1 = require("./BurnInSubtitleSrt");
8
- var DolbyVisionMetadata_1 = require("./DolbyVisionMetadata");
9
- var NexGuardFileMarker_1 = require("./NexGuardFileMarker");
10
- var PsnrQualityMetric_1 = require("./PsnrQualityMetric");
11
- var SccCaption_1 = require("./SccCaption");
12
- var Sprite_1 = require("./Sprite");
13
- var Stream_1 = require("./Stream");
14
- var StreamFilter_1 = require("./StreamFilter");
15
- var Thumbnail_1 = require("./Thumbnail");
16
- /**
17
- * @export
18
- * @class HistoryStream
19
- */
20
- var HistoryStream = /** @class */ (function () {
21
- function HistoryStream(obj) {
22
- if (!obj) {
23
- return;
24
- }
25
- this.stream = (0, Mapper_1.map)(obj.stream, Stream_1.default);
26
- this.filters = (0, Mapper_1.mapArray)(obj.filters, StreamFilter_1.default);
27
- this.burnInSubtitleDvbSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleDvbSubs, BurnInSubtitleDvbSub_1.default);
28
- this.burnInSubtitleSrtSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleSrtSubs, BurnInSubtitleSrt_1.default);
29
- this.nexGuardFileMarker = (0, Mapper_1.map)(obj.nexGuardFileMarker, NexGuardFileMarker_1.default);
30
- this.sccCaptions = (0, Mapper_1.mapArray)(obj.sccCaptions, SccCaption_1.default);
31
- this.bifs = (0, Mapper_1.mapArray)(obj.bifs, Bif_1.default);
32
- this.dolbyVisionMetadata = (0, Mapper_1.mapArray)(obj.dolbyVisionMetadata, DolbyVisionMetadata_1.default);
33
- this.thumbnails = (0, Mapper_1.mapArray)(obj.thumbnails, Thumbnail_1.default);
34
- this.sprites = (0, Mapper_1.mapArray)(obj.sprites, Sprite_1.default);
35
- this.psnrMetrics = (0, Mapper_1.mapArray)(obj.psnrMetrics, PsnrQualityMetric_1.default);
36
- }
37
- return HistoryStream;
38
- }());
39
- exports.HistoryStream = HistoryStream;
40
- exports.default = HistoryStream;