@bitmovin/api-sdk 1.139.0 → 1.141.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 +100 -6
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/ConsoleLogger.js +1 -1
- package/dist/common/Mapper.d.ts +1 -1
- package/dist/common/NullLogger.js +1 -1
- package/dist/common/RestClient.d.ts +1 -1
- package/dist/common/RestClient.js +2 -2
- package/dist/models/AbstractCondition.d.ts +1 -1
- package/dist/models/AdAnalyticsAbstractFilter.d.ts +1 -1
- package/dist/models/AdaptationSet.d.ts +1 -1
- package/dist/models/AnalyticsAbstractFilter.d.ts +1 -1
- package/dist/models/AnalyticsOutput.d.ts +1 -1
- package/dist/models/BroadcastTsTransportConfiguration.d.ts +2 -2
- package/dist/models/CodecConfiguration.d.ts +1 -1
- package/dist/models/DashRepresentation.d.ts +1 -1
- package/dist/models/DefaultManifestCondition.d.ts +1 -1
- package/dist/models/DolbyVisionTrackSampleEntryName.d.ts +1 -1
- package/dist/models/DolbyVisionTrackSampleEntryName.js +1 -1
- package/dist/models/Drm.d.ts +1 -1
- package/dist/models/Filter.d.ts +1 -1
- package/dist/models/H262VideoConfiguration.d.ts +1 -1
- package/dist/models/H264VideoConfiguration.d.ts +6 -6
- package/dist/models/H265VideoConfiguration.d.ts +7 -7
- package/dist/models/HeAacV1AudioConfiguration.d.ts +1 -1
- package/dist/models/HeAacV2AudioConfiguration.d.ts +1 -1
- package/dist/models/Id3Tag.d.ts +1 -1
- package/dist/models/Input.d.ts +1 -1
- package/dist/models/InputStream.d.ts +1 -1
- package/dist/models/Muxing.d.ts +1 -1
- package/dist/models/MvPredictionMode.d.ts +1 -1
- package/dist/models/MvPredictionMode.js +1 -1
- package/dist/models/Output.d.ts +2 -1
- package/dist/models/SidecarFile.d.ts +1 -1
- package/dist/models/SimpleEncodingLiveJobOutput.d.ts +2 -2
- package/dist/models/SimpleEncodingVodJobCdnOutput.d.ts +1 -1
- package/dist/models/SimpleEncodingVodJobInput.d.ts +1 -1
- package/dist/models/SimpleEncodingVodJobOutput.d.ts +1 -1
- package/dist/models/StartEncodingRequest.d.ts +3 -3
- package/dist/models/StartLiveEncodingRequest.d.ts +1 -1
- package/dist/models/StartManifestRequest.d.ts +1 -1
- package/dist/models/StreamsLiveUpdateRequest.d.ts +20 -0
- package/dist/models/StreamsLiveUpdateRequest.js +20 -0
- package/dist/models/Vp8VideoConfiguration.d.ts +3 -3
- package/dist/models/Vp9VideoConfiguration.d.ts +3 -3
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/streams/StreamsApi.d.ts +2 -0
- package/dist/streams/StreamsApi.js +2 -0
- package/dist/streams/live/LiveApi.d.ts +20 -0
- package/dist/streams/live/LiveApi.js +49 -0
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
14
14
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
15
|
function step(op) {
|
|
16
16
|
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
-
while (_) try {
|
|
17
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
18
18
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
19
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
20
|
switch (op[0]) {
|
package/dist/common/Mapper.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
14
14
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
15
|
function step(op) {
|
|
16
16
|
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
-
while (_) try {
|
|
17
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
18
18
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
19
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
20
|
switch (op[0]) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Configuration from './Configuration';
|
|
2
|
-
export
|
|
2
|
+
export type FetchAPI = (url: string, init?: any) => Promise<Response>;
|
|
3
3
|
export declare function copyAndPrepareBody(value: any): any;
|
|
4
4
|
export declare class RestClient {
|
|
5
5
|
private readonly GET;
|
|
@@ -29,7 +29,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
29
29
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
30
|
function step(op) {
|
|
31
31
|
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
-
while (_) try {
|
|
32
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
33
33
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
34
34
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
35
|
switch (op[0]) {
|
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.141.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -2,7 +2,7 @@ import AndConjunction from './AndConjunction';
|
|
|
2
2
|
import Condition from './Condition';
|
|
3
3
|
import ConditionType from './ConditionType';
|
|
4
4
|
import OrConjunction from './OrConjunction';
|
|
5
|
-
export
|
|
5
|
+
export type AbstractConditionUnion = Condition | AndConjunction | OrConjunction;
|
|
6
6
|
/**
|
|
7
7
|
* @export
|
|
8
8
|
* @class AbstractCondition
|
|
@@ -9,7 +9,7 @@ import AdAnalyticsLessThanOrEqualFilter from './AdAnalyticsLessThanOrEqualFilter
|
|
|
9
9
|
import AdAnalyticsNotContainsFilter from './AdAnalyticsNotContainsFilter';
|
|
10
10
|
import AdAnalyticsNotEqualFilter from './AdAnalyticsNotEqualFilter';
|
|
11
11
|
import AnalyticsQueryOperator from './AnalyticsQueryOperator';
|
|
12
|
-
export
|
|
12
|
+
export type AdAnalyticsAbstractFilterUnion = AdAnalyticsInFilter | AdAnalyticsEqualFilter | AdAnalyticsNotEqualFilter | AdAnalyticsLessThanFilter | AdAnalyticsLessThanOrEqualFilter | AdAnalyticsGreaterThanFilter | AdAnalyticsGreaterThanOrEqualFilter | AdAnalyticsContainsFilter | AdAnalyticsNotContainsFilter;
|
|
13
13
|
/**
|
|
14
14
|
* @export
|
|
15
15
|
* @class AdAnalyticsAbstractFilter
|
|
@@ -8,7 +8,7 @@ import ImageAdaptationSet from './ImageAdaptationSet';
|
|
|
8
8
|
import Label from './Label';
|
|
9
9
|
import SubtitleAdaptationSet from './SubtitleAdaptationSet';
|
|
10
10
|
import VideoAdaptationSet from './VideoAdaptationSet';
|
|
11
|
-
export
|
|
11
|
+
export type AdaptationSetUnion = VideoAdaptationSet | AudioAdaptationSet | ImageAdaptationSet | SubtitleAdaptationSet;
|
|
12
12
|
/**
|
|
13
13
|
* @export
|
|
14
14
|
* @class AdaptationSet
|
|
@@ -9,7 +9,7 @@ import AnalyticsLessThanOrEqualFilter from './AnalyticsLessThanOrEqualFilter';
|
|
|
9
9
|
import AnalyticsNotContainsFilter from './AnalyticsNotContainsFilter';
|
|
10
10
|
import AnalyticsNotEqualFilter from './AnalyticsNotEqualFilter';
|
|
11
11
|
import AnalyticsQueryOperator from './AnalyticsQueryOperator';
|
|
12
|
-
export
|
|
12
|
+
export type AnalyticsAbstractFilterUnion = AnalyticsInFilter | AnalyticsEqualFilter | AnalyticsNotEqualFilter | AnalyticsLessThanFilter | AnalyticsLessThanOrEqualFilter | AnalyticsGreaterThanFilter | AnalyticsGreaterThanOrEqualFilter | AnalyticsContainsFilter | AnalyticsNotContainsFilter;
|
|
13
13
|
/**
|
|
14
14
|
* @export
|
|
15
15
|
* @class AnalyticsAbstractFilter
|
|
@@ -4,7 +4,7 @@ import AnalyticsGcsServiceAccountOutput from './AnalyticsGcsServiceAccountOutput
|
|
|
4
4
|
import AnalyticsOutputType from './AnalyticsOutputType';
|
|
5
5
|
import AnalyticsS3RoleBasedOutput from './AnalyticsS3RoleBasedOutput';
|
|
6
6
|
import BitmovinResource from './BitmovinResource';
|
|
7
|
-
export
|
|
7
|
+
export type AnalyticsOutputUnion = AnalyticsS3RoleBasedOutput | AnalyticsGcsServiceAccountOutput | AnalyticsAzureOutput;
|
|
8
8
|
/**
|
|
9
9
|
* @export
|
|
10
10
|
* @class AnalyticsOutput
|
|
@@ -40,13 +40,13 @@ export declare class BroadcastTsTransportConfiguration {
|
|
|
40
40
|
*/
|
|
41
41
|
variableMuxRate?: boolean;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Presentation time stamp value for the first video frame. The timestamp is specified in the timescale of 90000
|
|
44
44
|
* @type {number}
|
|
45
45
|
* @memberof BroadcastTsTransportConfiguration
|
|
46
46
|
*/
|
|
47
47
|
initialPresentationTimeStamp?: number;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Program Clock Reference value at the beginning of the first packet for the transport stream. The PCR is specified in the timescale of 90000
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof BroadcastTsTransportConfiguration
|
|
52
52
|
*/
|
|
@@ -26,7 +26,7 @@ import VorbisAudioConfiguration from './VorbisAudioConfiguration';
|
|
|
26
26
|
import Vp8VideoConfiguration from './Vp8VideoConfiguration';
|
|
27
27
|
import Vp9VideoConfiguration from './Vp9VideoConfiguration';
|
|
28
28
|
import WebVttConfiguration from './WebVttConfiguration';
|
|
29
|
-
export
|
|
29
|
+
export type CodecConfigurationUnion = AacAudioConfiguration | DtsPassthroughAudioConfiguration | DtsAudioConfiguration | DtsXAudioConfiguration | DvbSubtitleConfiguration | HeAacV1AudioConfiguration | HeAacV2AudioConfiguration | H264VideoConfiguration | H265VideoConfiguration | Vp9VideoConfiguration | Vp8VideoConfiguration | Mp2AudioConfiguration | Mp3AudioConfiguration | Ac3AudioConfiguration | DolbyDigitalAudioConfiguration | Eac3AudioConfiguration | DolbyDigitalPlusAudioConfiguration | OpusAudioConfiguration | VorbisAudioConfiguration | MjpegVideoConfiguration | Av1VideoConfiguration | DolbyAtmosAudioConfiguration | H262VideoConfiguration | PcmAudioConfiguration | WebVttConfiguration | ImscConfiguration;
|
|
30
30
|
/**
|
|
31
31
|
* @export
|
|
32
32
|
* @class CodecConfiguration
|
|
@@ -12,7 +12,7 @@ import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscrim
|
|
|
12
12
|
import DashVttRepresentation from './DashVttRepresentation';
|
|
13
13
|
import DashWebmRepresentation from './DashWebmRepresentation';
|
|
14
14
|
import SpriteRepresentation from './SpriteRepresentation';
|
|
15
|
-
export
|
|
15
|
+
export type DashRepresentationUnion = DashFmp4DrmRepresentation | DashFmp4Representation | DashWebmRepresentation | DashCmafRepresentation | DashChunkedTextRepresentation | DashMp4Representation | DashMp4DrmRepresentation | DashProgressiveWebmRepresentation | DashVttRepresentation | SpriteRepresentation | DashImscRepresentation | ContentProtection;
|
|
16
16
|
/**
|
|
17
17
|
* @export
|
|
18
18
|
* @class DashRepresentation
|
|
@@ -2,7 +2,7 @@ import ConditionType from './ConditionType';
|
|
|
2
2
|
import DefaultManifestAndCondition from './DefaultManifestAndCondition';
|
|
3
3
|
import DefaultManifestAttributeCondition from './DefaultManifestAttributeCondition';
|
|
4
4
|
import DefaultManifestOrCondition from './DefaultManifestOrCondition';
|
|
5
|
-
export
|
|
5
|
+
export type DefaultManifestConditionUnion = DefaultManifestAttributeCondition | DefaultManifestAndCondition | DefaultManifestOrCondition;
|
|
6
6
|
/**
|
|
7
7
|
* @export
|
|
8
8
|
* @class DefaultManifestCondition
|
package/dist/models/Drm.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import PlayReadyDrm from './PlayReadyDrm';
|
|
|
10
10
|
import PrimeTimeDrm from './PrimeTimeDrm';
|
|
11
11
|
import SpekeDrm from './SpekeDrm';
|
|
12
12
|
import WidevineDrm from './WidevineDrm';
|
|
13
|
-
export
|
|
13
|
+
export type DrmUnion = WidevineDrm | PlayReadyDrm | PrimeTimeDrm | FairPlayDrm | MarlinDrm | ClearKeyDrm | AesEncryptionDrm | CencDrm | SpekeDrm;
|
|
14
14
|
/**
|
|
15
15
|
* @export
|
|
16
16
|
* @class Drm
|
package/dist/models/Filter.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import ScaleFilter from './ScaleFilter';
|
|
|
15
15
|
import TextFilter from './TextFilter';
|
|
16
16
|
import UnsharpFilter from './UnsharpFilter';
|
|
17
17
|
import WatermarkFilter from './WatermarkFilter';
|
|
18
|
-
export
|
|
18
|
+
export type FilterUnion = CropFilter | ConformFilter | WatermarkFilter | EnhancedWatermarkFilter | RotateFilter | DeinterlaceFilter | EnhancedDeinterlaceFilter | AudioMixFilter | DenoiseHqdn3dFilter | TextFilter | UnsharpFilter | ScaleFilter | InterlaceFilter | AudioVolumeFilter | EbuR128SinglePassFilter;
|
|
19
19
|
/**
|
|
20
20
|
* @export
|
|
21
21
|
* @class Filter
|
|
@@ -40,7 +40,7 @@ export declare class H264VideoConfiguration extends VideoConfiguration {
|
|
|
40
40
|
*/
|
|
41
41
|
dynamicRangeFormat?: H264DynamicRangeFormat;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Constant rate factor for quality-based variable bitrate. Either bitrate or crf is required.
|
|
44
44
|
* @type {number}
|
|
45
45
|
* @memberof H264VideoConfiguration
|
|
46
46
|
*/
|
|
@@ -52,25 +52,25 @@ export declare class H264VideoConfiguration extends VideoConfiguration {
|
|
|
52
52
|
*/
|
|
53
53
|
profile?: ProfileH264;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Amount of b frames
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof H264VideoConfiguration
|
|
58
58
|
*/
|
|
59
59
|
bframes?: number;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Amount of reference frames.
|
|
62
62
|
* @type {number}
|
|
63
63
|
* @memberof H264VideoConfiguration
|
|
64
64
|
*/
|
|
65
65
|
refFrames?: number;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Minimum quantization factor
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof H264VideoConfiguration
|
|
70
70
|
*/
|
|
71
71
|
qpMin?: number;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* Maximum quantization factor
|
|
74
74
|
* @type {number}
|
|
75
75
|
* @memberof H264VideoConfiguration
|
|
76
76
|
*/
|
|
@@ -81,7 +81,7 @@ export declare class H264VideoConfiguration extends VideoConfiguration {
|
|
|
81
81
|
*/
|
|
82
82
|
mvPredictionMode?: MvPredictionMode;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Maximum motion vector search range
|
|
85
85
|
* @type {number}
|
|
86
86
|
* @memberof H264VideoConfiguration
|
|
87
87
|
*/
|
|
@@ -45,7 +45,7 @@ export declare class H265VideoConfiguration extends VideoConfiguration {
|
|
|
45
45
|
*/
|
|
46
46
|
dynamicRangeFormat?: H265DynamicRangeFormat;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Constant rate factor for quality-based variable bitrate. Either bitrate or crf is required.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof H265VideoConfiguration
|
|
51
51
|
*/
|
|
@@ -56,19 +56,19 @@ export declare class H265VideoConfiguration extends VideoConfiguration {
|
|
|
56
56
|
*/
|
|
57
57
|
profile?: ProfileH265;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Amount of b frames
|
|
60
60
|
* @type {number}
|
|
61
61
|
* @memberof H265VideoConfiguration
|
|
62
62
|
*/
|
|
63
63
|
bframes?: number;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* Amount of reference frames
|
|
66
66
|
* @type {number}
|
|
67
67
|
* @memberof H265VideoConfiguration
|
|
68
68
|
*/
|
|
69
69
|
refFrames?: number;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Quantization factor
|
|
72
72
|
* @type {number}
|
|
73
73
|
* @memberof H265VideoConfiguration
|
|
74
74
|
*/
|
|
@@ -345,13 +345,13 @@ export declare class H265VideoConfiguration extends VideoConfiguration {
|
|
|
345
345
|
*/
|
|
346
346
|
rateDistortionLevelForQuantization?: RateDistortionLevelForQuantization;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* Minimum quantization factor. Valid value range: 0 - 69
|
|
349
349
|
* @type {number}
|
|
350
350
|
* @memberof H265VideoConfiguration
|
|
351
351
|
*/
|
|
352
352
|
qpMin?: number;
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Maximum quantization factor. Valid value range: 0 - 69
|
|
355
355
|
* @type {number}
|
|
356
356
|
* @memberof H265VideoConfiguration
|
|
357
357
|
*/
|
|
@@ -549,7 +549,7 @@ export declare class H265VideoConfiguration extends VideoConfiguration {
|
|
|
549
549
|
*/
|
|
550
550
|
pbRatio?: number;
|
|
551
551
|
/**
|
|
552
|
-
*
|
|
552
|
+
* Quantizer curve compression factor. It weights the frame quantizer based on the complexity of residual (measured by lookahead). Default 0.6
|
|
553
553
|
* @type {number}
|
|
554
554
|
* @memberof H265VideoConfiguration
|
|
555
555
|
*/
|
|
@@ -20,7 +20,7 @@ export declare class HeAacV1AudioConfiguration extends AudioConfiguration {
|
|
|
20
20
|
*/
|
|
21
21
|
channelLayout?: AacChannelLayout;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Spectral Band Replication (SBR) and Parameteric Stereo (PS) signaling style.
|
|
24
24
|
* @type {HeAacV1Signaling}
|
|
25
25
|
* @memberof HeAacV1AudioConfiguration
|
|
26
26
|
*/
|
|
@@ -20,7 +20,7 @@ export declare class HeAacV2AudioConfiguration extends AudioConfiguration {
|
|
|
20
20
|
*/
|
|
21
21
|
channelLayout?: AacChannelLayout;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Spectral Band Replication (SBR) and Parameteric Stereo (PS) signaling style.
|
|
24
24
|
* @type {HeAacV2Signaling}
|
|
25
25
|
* @memberof HeAacV2AudioConfiguration
|
|
26
26
|
*/
|
package/dist/models/Id3Tag.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import Id3TagPositionMode from './Id3TagPositionMode';
|
|
|
4
4
|
import Id3TagType from './Id3TagType';
|
|
5
5
|
import PlaintextId3Tag from './PlaintextId3Tag';
|
|
6
6
|
import RawId3Tag from './RawId3Tag';
|
|
7
|
-
export
|
|
7
|
+
export type Id3TagUnion = RawId3Tag | FrameIdId3Tag | PlaintextId3Tag;
|
|
8
8
|
/**
|
|
9
9
|
* @export
|
|
10
10
|
* @class Id3Tag
|
package/dist/models/Input.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import S3RoleBasedInput from './S3RoleBasedInput';
|
|
|
18
18
|
import SftpInput from './SftpInput';
|
|
19
19
|
import SrtInput from './SrtInput';
|
|
20
20
|
import ZixiInput from './ZixiInput';
|
|
21
|
-
export
|
|
21
|
+
export type InputUnion = AkamaiNetStorageInput | AsperaInput | AzureInput | RedundantRtmpInput | FtpInput | GenericS3Input | GcsInput | HttpInput | HttpsInput | LocalInput | RtmpInput | S3Input | S3RoleBasedInput | SftpInput | ZixiInput | SrtInput | GcsServiceAccountInput | DirectFileUploadInput;
|
|
22
22
|
/**
|
|
23
23
|
* @export
|
|
24
24
|
* @class Input
|
|
@@ -14,7 +14,7 @@ import IngestInputStream from './IngestInputStream';
|
|
|
14
14
|
import InputStreamType from './InputStreamType';
|
|
15
15
|
import TimeBasedTrimmingInputStream from './TimeBasedTrimmingInputStream';
|
|
16
16
|
import TimecodeTrackTrimmingInputStream from './TimecodeTrackTrimmingInputStream';
|
|
17
|
-
export
|
|
17
|
+
export type InputStreamUnion = IngestInputStream | ConcatenationInputStream | TimeBasedTrimmingInputStream | TimecodeTrackTrimmingInputStream | H264PictureTimingTrimmingInputStream | AudioMixInputStream | DolbyVisionMetadataIngestInputStream | Cea608CaptionInputStream | Cea708CaptionInputStream | FileInputStream | DvbSubtitleInputStream | DvbTeletextInputStream | DolbyAtmosIngestInputStream | DolbyVisionInputStream;
|
|
18
18
|
/**
|
|
19
19
|
* @export
|
|
20
20
|
* @class InputStream
|
package/dist/models/Muxing.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import StreamConditionsMode from './StreamConditionsMode';
|
|
|
19
19
|
import TextMuxing from './TextMuxing';
|
|
20
20
|
import TsMuxing from './TsMuxing';
|
|
21
21
|
import WebmMuxing from './WebmMuxing';
|
|
22
|
-
export
|
|
22
|
+
export type MuxingUnion = Fmp4Muxing | CmafMuxing | Mp4Muxing | TsMuxing | WebmMuxing | Mp3Muxing | MxfMuxing | ProgressiveWebmMuxing | ProgressiveMovMuxing | ProgressiveTsMuxing | BroadcastTsMuxing | ChunkedTextMuxing | TextMuxing | SegmentedRawMuxing | PackedAudioMuxing;
|
|
23
23
|
/**
|
|
24
24
|
* @export
|
|
25
25
|
* @class Muxing
|
package/dist/models/Output.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import OutputType from './OutputType';
|
|
|
14
14
|
import S3Output from './S3Output';
|
|
15
15
|
import S3RoleBasedOutput from './S3RoleBasedOutput';
|
|
16
16
|
import SftpOutput from './SftpOutput';
|
|
17
|
-
export
|
|
17
|
+
export type OutputUnion = AkamaiNetStorageOutput | AzureOutput | CdnOutput | GenericS3Output | GcsOutput | FtpOutput | LocalOutput | S3Output | S3RoleBasedOutput | SftpOutput | AkamaiMslOutput | LiveMediaIngestOutput | GcsServiceAccountOutput;
|
|
18
18
|
/**
|
|
19
19
|
* @export
|
|
20
20
|
* @class Output
|
|
@@ -25,6 +25,7 @@ export declare class Output extends BitmovinResource {
|
|
|
25
25
|
[key in keyof typeof OutputType]: string;
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
|
+
* Deprecation notice: This property does not have any effect and will not be returned by GET endpoints
|
|
28
29
|
* @type {AclEntry[]}
|
|
29
30
|
* @memberof Output
|
|
30
31
|
*/
|
|
@@ -3,7 +3,7 @@ import EncodingOutput from './EncodingOutput';
|
|
|
3
3
|
import SidecarErrorMode from './SidecarErrorMode';
|
|
4
4
|
import SidecarFileType from './SidecarFileType';
|
|
5
5
|
import WebVttSidecarFile from './WebVttSidecarFile';
|
|
6
|
-
export
|
|
6
|
+
export type SidecarFileUnion = WebVttSidecarFile;
|
|
7
7
|
/**
|
|
8
8
|
* A file that is added to an encoding. The size limit for a sidecar file is 10 MB
|
|
9
9
|
* @export
|
|
@@ -2,7 +2,7 @@ import SimpleEncodingLiveJobCdnOutput from './SimpleEncodingLiveJobCdnOutput';
|
|
|
2
2
|
import SimpleEncodingLiveJobOutputType from './SimpleEncodingLiveJobOutputType';
|
|
3
3
|
import SimpleEncodingLiveJobUrlOutput from './SimpleEncodingLiveJobUrlOutput';
|
|
4
4
|
import SimpleEncodingLiveMaxResolution from './SimpleEncodingLiveMaxResolution';
|
|
5
|
-
export
|
|
5
|
+
export type SimpleEncodingLiveJobOutputUnion = SimpleEncodingLiveJobUrlOutput | SimpleEncodingLiveJobCdnOutput;
|
|
6
6
|
/**
|
|
7
7
|
* @export
|
|
8
8
|
* @class SimpleEncodingLiveJobOutput
|
|
@@ -13,7 +13,7 @@ export declare class SimpleEncodingLiveJobOutput {
|
|
|
13
13
|
[key in keyof typeof SimpleEncodingLiveJobOutputType]: string;
|
|
14
14
|
};
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* The maximum output resolution to be generated
|
|
17
17
|
* @type {SimpleEncodingLiveMaxResolution}
|
|
18
18
|
* @memberof SimpleEncodingLiveJobOutput
|
|
19
19
|
*/
|
|
@@ -13,7 +13,7 @@ export declare class SimpleEncodingVodJobCdnOutput extends SimpleEncodingVodJobO
|
|
|
13
13
|
*/
|
|
14
14
|
readonly type: SimpleEncodingVodJobOutputType;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* The maximum output resolution to be generated
|
|
17
17
|
* @type {SimpleEncodingLiveMaxResolution}
|
|
18
18
|
* @memberof SimpleEncodingVodJobCdnOutput
|
|
19
19
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import SimpleEncodingVodJobDirectFileUploadInput from './SimpleEncodingVodJobDirectFileUploadInput';
|
|
2
2
|
import SimpleEncodingVodJobInputSourceType from './SimpleEncodingVodJobInputSourceType';
|
|
3
3
|
import SimpleEncodingVodJobUrlInput from './SimpleEncodingVodJobUrlInput';
|
|
4
|
-
export
|
|
4
|
+
export type SimpleEncodingVodJobInputUnion = SimpleEncodingVodJobUrlInput | SimpleEncodingVodJobDirectFileUploadInput;
|
|
5
5
|
/**
|
|
6
6
|
* @export
|
|
7
7
|
* @class SimpleEncodingVodJobInput
|
|
@@ -2,7 +2,7 @@ import SimpleEncodingVodJobCdnOutput from './SimpleEncodingVodJobCdnOutput';
|
|
|
2
2
|
import SimpleEncodingVodJobOutputArtifact from './SimpleEncodingVodJobOutputArtifact';
|
|
3
3
|
import SimpleEncodingVodJobOutputType from './SimpleEncodingVodJobOutputType';
|
|
4
4
|
import SimpleEncodingVodJobUrlOutput from './SimpleEncodingVodJobUrlOutput';
|
|
5
|
-
export
|
|
5
|
+
export type SimpleEncodingVodJobOutputUnion = SimpleEncodingVodJobUrlOutput | SimpleEncodingVodJobCdnOutput;
|
|
6
6
|
/**
|
|
7
7
|
* @export
|
|
8
8
|
* @class SimpleEncodingVodJobOutput
|
|
@@ -17,13 +17,13 @@ export declare class StartEncodingRequest {
|
|
|
17
17
|
*/
|
|
18
18
|
trimming?: Trimming;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Scheduling parameters of the encoding.
|
|
21
21
|
* @type {Scheduling}
|
|
22
22
|
* @memberof StartEncodingRequest
|
|
23
23
|
*/
|
|
24
24
|
scheduling?: Scheduling;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Special tweaks for your encoding job.
|
|
27
27
|
* @type {Tweaks}
|
|
28
28
|
* @memberof StartEncodingRequest
|
|
29
29
|
*/
|
|
@@ -71,7 +71,7 @@ export declare class StartEncodingRequest {
|
|
|
71
71
|
*/
|
|
72
72
|
vodSmoothManifests?: ManifestResource[];
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Version of the manifest generation engine to be used
|
|
75
75
|
* @type {ManifestGenerator}
|
|
76
76
|
* @memberof StartEncodingRequest
|
|
77
77
|
*/
|
|
@@ -41,7 +41,7 @@ export declare class StartLiveEncodingRequest {
|
|
|
41
41
|
*/
|
|
42
42
|
reuploadSettings?: ReuploadSettings;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Version of the manifest generation engine to be used
|
|
45
45
|
* @type {ManifestGenerator}
|
|
46
46
|
* @memberof StartLiveEncodingRequest
|
|
47
47
|
*/
|
|
@@ -5,7 +5,7 @@ import ManifestGenerator from './ManifestGenerator';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class StartManifestRequest {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Version of the manifest generation engine to be used. The `V2` option is currently only supported for manifests including resources from a single encoding and is only valid in combination with encoder versions >= `2.108.0`.
|
|
9
9
|
* @type {ManifestGenerator}
|
|
10
10
|
* @memberof StartManifestRequest
|
|
11
11
|
*/
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class StreamsLiveUpdateRequest
|
|
4
|
+
*/
|
|
5
|
+
export declare class StreamsLiveUpdateRequest {
|
|
6
|
+
/**
|
|
7
|
+
* The new title of the stream
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof StreamsLiveUpdateRequest
|
|
10
|
+
*/
|
|
11
|
+
title?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The new description of the stream
|
|
14
|
+
* @type {string}
|
|
15
|
+
* @memberof StreamsLiveUpdateRequest
|
|
16
|
+
*/
|
|
17
|
+
description?: string;
|
|
18
|
+
constructor(obj?: Partial<StreamsLiveUpdateRequest>);
|
|
19
|
+
}
|
|
20
|
+
export default StreamsLiveUpdateRequest;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StreamsLiveUpdateRequest = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class StreamsLiveUpdateRequest
|
|
8
|
+
*/
|
|
9
|
+
var StreamsLiveUpdateRequest = /** @class */ (function () {
|
|
10
|
+
function StreamsLiveUpdateRequest(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
15
|
+
this.description = (0, Mapper_1.map)(obj.description);
|
|
16
|
+
}
|
|
17
|
+
return StreamsLiveUpdateRequest;
|
|
18
|
+
}());
|
|
19
|
+
exports.StreamsLiveUpdateRequest = StreamsLiveUpdateRequest;
|
|
20
|
+
exports.default = StreamsLiveUpdateRequest;
|
|
@@ -15,7 +15,7 @@ export declare class Vp8VideoConfiguration extends VideoConfiguration {
|
|
|
15
15
|
*/
|
|
16
16
|
readonly type: CodecConfigType;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Constant rate factor for quality-based variable bitrate. Either bitrate or crf is required.
|
|
19
19
|
* @type {number}
|
|
20
20
|
* @memberof Vp8VideoConfiguration
|
|
21
21
|
*/
|
|
@@ -33,13 +33,13 @@ export declare class Vp8VideoConfiguration extends VideoConfiguration {
|
|
|
33
33
|
*/
|
|
34
34
|
maxIntraRate?: number;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Minimum quantization factor.
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof Vp8VideoConfiguration
|
|
39
39
|
*/
|
|
40
40
|
qpMin?: number;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Maximum quantization factor.
|
|
43
43
|
* @type {number}
|
|
44
44
|
* @memberof Vp8VideoConfiguration
|
|
45
45
|
*/
|
|
@@ -29,7 +29,7 @@ export declare class Vp9VideoConfiguration extends VideoConfiguration {
|
|
|
29
29
|
*/
|
|
30
30
|
dynamicRangeFormat?: Vp9DynamicRangeFormat;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Constant rate factor for quality-based variable bitrate. Either bitrate or crf is required.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof Vp9VideoConfiguration
|
|
35
35
|
*/
|
|
@@ -71,13 +71,13 @@ export declare class Vp9VideoConfiguration extends VideoConfiguration {
|
|
|
71
71
|
*/
|
|
72
72
|
maxIntraRate?: number;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Minimum quantization factor.
|
|
75
75
|
* @type {number}
|
|
76
76
|
* @memberof Vp9VideoConfiguration
|
|
77
77
|
*/
|
|
78
78
|
qpMin?: number;
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* Maximum quantization factor.
|
|
81
81
|
* @type {number}
|
|
82
82
|
* @memberof Vp9VideoConfiguration
|
|
83
83
|
*/
|
package/dist/models/index.d.ts
CHANGED
|
@@ -688,6 +688,7 @@ export * from './StreamMode';
|
|
|
688
688
|
export * from './StreamPerTitleFixedResolutionAndBitrateSettings';
|
|
689
689
|
export * from './StreamPerTitleSettings';
|
|
690
690
|
export * from './StreamSelectionMode';
|
|
691
|
+
export * from './StreamsLiveUpdateRequest';
|
|
691
692
|
export * from './StreamsVideoCreateRequest';
|
|
692
693
|
export * from './StreamsVideoEncodingStatus';
|
|
693
694
|
export * from './StreamsVideoEncodingTask';
|
package/dist/models/index.js
CHANGED
|
@@ -704,6 +704,7 @@ __exportStar(require("./StreamMode"), exports);
|
|
|
704
704
|
__exportStar(require("./StreamPerTitleFixedResolutionAndBitrateSettings"), exports);
|
|
705
705
|
__exportStar(require("./StreamPerTitleSettings"), exports);
|
|
706
706
|
__exportStar(require("./StreamSelectionMode"), exports);
|
|
707
|
+
__exportStar(require("./StreamsLiveUpdateRequest"), exports);
|
|
707
708
|
__exportStar(require("./StreamsVideoCreateRequest"), exports);
|
|
708
709
|
__exportStar(require("./StreamsVideoEncodingStatus"), exports);
|
|
709
710
|
__exportStar(require("./StreamsVideoEncodingTask"), exports);
|