@aws-sdk/client-mediaconvert 3.504.0 → 3.505.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/dist-cjs/index.js +30 -26
- package/dist-es/models/models_0.js +10 -10
- package/dist-es/protocols/Aws_restJson1.js +23 -19
- package/dist-types/commands/CreateJobCommand.d.ts +10 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +10 -2
- package/dist-types/commands/CreatePresetCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +2 -0
- package/dist-types/commands/GetJobCommand.d.ts +5 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +5 -1
- package/dist-types/commands/GetPresetCommand.d.ts +2 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +5 -1
- package/dist-types/commands/ListJobsCommand.d.ts +5 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +2 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +10 -2
- package/dist-types/commands/UpdatePresetCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +63 -53
- package/dist-types/models/models_2.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -18
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -3643,6 +3643,11 @@ var se___listOfCmafAdditionalManifest = /* @__PURE__ */ __name((input, context)
|
|
|
3643
3643
|
return se_CmafAdditionalManifest(entry, context);
|
|
3644
3644
|
});
|
|
3645
3645
|
}, "se___listOfCmafAdditionalManifest");
|
|
3646
|
+
var se___listOfColorConversion3DLUTSetting = /* @__PURE__ */ __name((input, context) => {
|
|
3647
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
3648
|
+
return se_ColorConversion3DLUTSetting(entry, context);
|
|
3649
|
+
});
|
|
3650
|
+
}, "se___listOfColorConversion3DLUTSetting");
|
|
3646
3651
|
var se___listOfDashAdditionalManifest = /* @__PURE__ */ __name((input, context) => {
|
|
3647
3652
|
return input.filter((e) => e != null).map((entry) => {
|
|
3648
3653
|
return se_DashAdditionalManifest(entry, context);
|
|
@@ -4136,11 +4141,6 @@ var se_ColorConversion3DLUTSetting = /* @__PURE__ */ __name((input, context) =>
|
|
|
4136
4141
|
outputMasteringLuminance: [, , `OutputMasteringLuminance`]
|
|
4137
4142
|
});
|
|
4138
4143
|
}, "se_ColorConversion3DLUTSetting");
|
|
4139
|
-
var se_ColorConversion3DLUTSettings = /* @__PURE__ */ __name((input, context) => {
|
|
4140
|
-
return input.filter((e) => e != null).map((entry) => {
|
|
4141
|
-
return se_ColorConversion3DLUTSetting(entry, context);
|
|
4142
|
-
});
|
|
4143
|
-
}, "se_ColorConversion3DLUTSettings");
|
|
4144
4144
|
var se_ColorCorrector = /* @__PURE__ */ __name((input, context) => {
|
|
4145
4145
|
return (0, import_smithy_client.take)(input, {
|
|
4146
4146
|
brightness: [, , `Brightness`],
|
|
@@ -4777,7 +4777,7 @@ var se_JobSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
4777
4777
|
availBlanking: [, (_) => se_AvailBlanking(_, context), `AvailBlanking`],
|
|
4778
4778
|
colorConversion3DLUTSettings: [
|
|
4779
4779
|
,
|
|
4780
|
-
(_) =>
|
|
4780
|
+
(_) => se___listOfColorConversion3DLUTSetting(_, context),
|
|
4781
4781
|
`ColorConversion3DLUTSettings`
|
|
4782
4782
|
],
|
|
4783
4783
|
esam: [, (_) => se_EsamSettings(_, context), `Esam`],
|
|
@@ -4799,7 +4799,7 @@ var se_JobTemplateSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
4799
4799
|
availBlanking: [, (_) => se_AvailBlanking(_, context), `AvailBlanking`],
|
|
4800
4800
|
colorConversion3DLUTSettings: [
|
|
4801
4801
|
,
|
|
4802
|
-
(_) =>
|
|
4802
|
+
(_) => se___listOfColorConversion3DLUTSetting(_, context),
|
|
4803
4803
|
`ColorConversion3DLUTSettings`
|
|
4804
4804
|
],
|
|
4805
4805
|
esam: [, (_) => se_EsamSettings(_, context), `Esam`],
|
|
@@ -5218,6 +5218,8 @@ var se_Rectangle = /* @__PURE__ */ __name((input, context) => {
|
|
|
5218
5218
|
}, "se_Rectangle");
|
|
5219
5219
|
var se_RemixSettings = /* @__PURE__ */ __name((input, context) => {
|
|
5220
5220
|
return (0, import_smithy_client.take)(input, {
|
|
5221
|
+
audioDescriptionAudioChannel: [, , `AudioDescriptionAudioChannel`],
|
|
5222
|
+
audioDescriptionDataChannel: [, , `AudioDescriptionDataChannel`],
|
|
5221
5223
|
channelMapping: [, (_) => se_ChannelMapping(_, context), `ChannelMapping`],
|
|
5222
5224
|
channelsIn: [, , `ChannelsIn`],
|
|
5223
5225
|
channelsOut: [, , `ChannelsOut`]
|
|
@@ -5611,6 +5613,12 @@ var de___listOfCmafAdditionalManifest = /* @__PURE__ */ __name((output, context)
|
|
|
5611
5613
|
});
|
|
5612
5614
|
return retVal;
|
|
5613
5615
|
}, "de___listOfCmafAdditionalManifest");
|
|
5616
|
+
var de___listOfColorConversion3DLUTSetting = /* @__PURE__ */ __name((output, context) => {
|
|
5617
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5618
|
+
return de_ColorConversion3DLUTSetting(entry, context);
|
|
5619
|
+
});
|
|
5620
|
+
return retVal;
|
|
5621
|
+
}, "de___listOfColorConversion3DLUTSetting");
|
|
5614
5622
|
var de___listOfDashAdditionalManifest = /* @__PURE__ */ __name((output, context) => {
|
|
5615
5623
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5616
5624
|
return de_DashAdditionalManifest(entry, context);
|
|
@@ -6186,12 +6194,6 @@ var de_ColorConversion3DLUTSetting = /* @__PURE__ */ __name((output, context) =>
|
|
|
6186
6194
|
OutputMasteringLuminance: [, import_smithy_client.expectInt32, `outputMasteringLuminance`]
|
|
6187
6195
|
});
|
|
6188
6196
|
}, "de_ColorConversion3DLUTSetting");
|
|
6189
|
-
var de_ColorConversion3DLUTSettings = /* @__PURE__ */ __name((output, context) => {
|
|
6190
|
-
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
6191
|
-
return de_ColorConversion3DLUTSetting(entry, context);
|
|
6192
|
-
});
|
|
6193
|
-
return retVal;
|
|
6194
|
-
}, "de_ColorConversion3DLUTSettings");
|
|
6195
6197
|
var de_ColorCorrector = /* @__PURE__ */ __name((output, context) => {
|
|
6196
6198
|
return (0, import_smithy_client.take)(output, {
|
|
6197
6199
|
Brightness: [, import_smithy_client.expectInt32, `brightness`],
|
|
@@ -6882,7 +6884,7 @@ var de_JobSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
6882
6884
|
AvailBlanking: [, (_) => de_AvailBlanking(_, context), `availBlanking`],
|
|
6883
6885
|
ColorConversion3DLUTSettings: [
|
|
6884
6886
|
,
|
|
6885
|
-
(_) =>
|
|
6887
|
+
(_) => de___listOfColorConversion3DLUTSetting(_, context),
|
|
6886
6888
|
`colorConversion3DLUTSettings`
|
|
6887
6889
|
],
|
|
6888
6890
|
Esam: [, (_) => de_EsamSettings(_, context), `esam`],
|
|
@@ -6925,7 +6927,7 @@ var de_JobTemplateSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
6925
6927
|
AvailBlanking: [, (_) => de_AvailBlanking(_, context), `availBlanking`],
|
|
6926
6928
|
ColorConversion3DLUTSettings: [
|
|
6927
6929
|
,
|
|
6928
|
-
(_) =>
|
|
6930
|
+
(_) => de___listOfColorConversion3DLUTSetting(_, context),
|
|
6929
6931
|
`colorConversion3DLUTSettings`
|
|
6930
6932
|
],
|
|
6931
6933
|
Esam: [, (_) => de_EsamSettings(_, context), `esam`],
|
|
@@ -7393,6 +7395,8 @@ var de_Rectangle = /* @__PURE__ */ __name((output, context) => {
|
|
|
7393
7395
|
}, "de_Rectangle");
|
|
7394
7396
|
var de_RemixSettings = /* @__PURE__ */ __name((output, context) => {
|
|
7395
7397
|
return (0, import_smithy_client.take)(output, {
|
|
7398
|
+
AudioDescriptionAudioChannel: [, import_smithy_client.expectInt32, `audioDescriptionAudioChannel`],
|
|
7399
|
+
AudioDescriptionDataChannel: [, import_smithy_client.expectInt32, `audioDescriptionDataChannel`],
|
|
7396
7400
|
ChannelMapping: [, (_) => de_ChannelMapping(_, context), `channelMapping`],
|
|
7397
7401
|
ChannelsIn: [, import_smithy_client.expectInt32, `channelsIn`],
|
|
7398
7402
|
ChannelsOut: [, import_smithy_client.expectInt32, `channelsOut`]
|
|
@@ -9030,6 +9034,16 @@ var WebvttStylePassthrough = {
|
|
|
9030
9034
|
ENABLED: "ENABLED",
|
|
9031
9035
|
STRICT: "STRICT"
|
|
9032
9036
|
};
|
|
9037
|
+
var ColorSpace = {
|
|
9038
|
+
FOLLOW: "FOLLOW",
|
|
9039
|
+
HDR10: "HDR10",
|
|
9040
|
+
HLG_2020: "HLG_2020",
|
|
9041
|
+
P3D65_HDR: "P3D65_HDR",
|
|
9042
|
+
P3D65_SDR: "P3D65_SDR",
|
|
9043
|
+
P3DCI: "P3DCI",
|
|
9044
|
+
REC_601: "REC_601",
|
|
9045
|
+
REC_709: "REC_709"
|
|
9046
|
+
};
|
|
9033
9047
|
var HlsAdMarkers = {
|
|
9034
9048
|
ELEMENTAL: "ELEMENTAL",
|
|
9035
9049
|
ELEMENTAL_SCTE35: "ELEMENTAL_SCTE35"
|
|
@@ -9142,16 +9156,6 @@ var AlphaBehavior = {
|
|
|
9142
9156
|
DISCARD: "DISCARD",
|
|
9143
9157
|
REMAP_TO_LUMA: "REMAP_TO_LUMA"
|
|
9144
9158
|
};
|
|
9145
|
-
var ColorSpace = {
|
|
9146
|
-
FOLLOW: "FOLLOW",
|
|
9147
|
-
HDR10: "HDR10",
|
|
9148
|
-
HLG_2020: "HLG_2020",
|
|
9149
|
-
P3D65_HDR: "P3D65_HDR",
|
|
9150
|
-
P3D65_SDR: "P3D65_SDR",
|
|
9151
|
-
P3DCI: "P3DCI",
|
|
9152
|
-
REC_601: "REC_601",
|
|
9153
|
-
REC_709: "REC_709"
|
|
9154
|
-
};
|
|
9155
9159
|
var ColorSpaceUsage = {
|
|
9156
9160
|
FALLBACK: "FALLBACK",
|
|
9157
9161
|
FORCE: "FORCE"
|
|
@@ -9677,6 +9681,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
9677
9681
|
TtmlStylePassthrough,
|
|
9678
9682
|
WebvttAccessibilitySubs,
|
|
9679
9683
|
WebvttStylePassthrough,
|
|
9684
|
+
ColorSpace,
|
|
9680
9685
|
HlsAdMarkers,
|
|
9681
9686
|
AdvancedInputFilter,
|
|
9682
9687
|
AdvancedInputFilterAddTexture,
|
|
@@ -9700,7 +9705,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
9700
9705
|
InputPsiControl,
|
|
9701
9706
|
InputTimecodeSource,
|
|
9702
9707
|
AlphaBehavior,
|
|
9703
|
-
ColorSpace,
|
|
9704
9708
|
ColorSpaceUsage,
|
|
9705
9709
|
EmbeddedTimecodeOverride,
|
|
9706
9710
|
PadVideo,
|
|
@@ -664,6 +664,16 @@ export const WebvttStylePassthrough = {
|
|
|
664
664
|
ENABLED: "ENABLED",
|
|
665
665
|
STRICT: "STRICT",
|
|
666
666
|
};
|
|
667
|
+
export const ColorSpace = {
|
|
668
|
+
FOLLOW: "FOLLOW",
|
|
669
|
+
HDR10: "HDR10",
|
|
670
|
+
HLG_2020: "HLG_2020",
|
|
671
|
+
P3D65_HDR: "P3D65_HDR",
|
|
672
|
+
P3D65_SDR: "P3D65_SDR",
|
|
673
|
+
P3DCI: "P3DCI",
|
|
674
|
+
REC_601: "REC_601",
|
|
675
|
+
REC_709: "REC_709",
|
|
676
|
+
};
|
|
667
677
|
export const HlsAdMarkers = {
|
|
668
678
|
ELEMENTAL: "ELEMENTAL",
|
|
669
679
|
ELEMENTAL_SCTE35: "ELEMENTAL_SCTE35",
|
|
@@ -776,16 +786,6 @@ export const AlphaBehavior = {
|
|
|
776
786
|
DISCARD: "DISCARD",
|
|
777
787
|
REMAP_TO_LUMA: "REMAP_TO_LUMA",
|
|
778
788
|
};
|
|
779
|
-
export const ColorSpace = {
|
|
780
|
-
FOLLOW: "FOLLOW",
|
|
781
|
-
HDR10: "HDR10",
|
|
782
|
-
HLG_2020: "HLG_2020",
|
|
783
|
-
P3D65_HDR: "P3D65_HDR",
|
|
784
|
-
P3D65_SDR: "P3D65_SDR",
|
|
785
|
-
P3DCI: "P3DCI",
|
|
786
|
-
REC_601: "REC_601",
|
|
787
|
-
REC_709: "REC_709",
|
|
788
|
-
};
|
|
789
789
|
export const ColorSpaceUsage = {
|
|
790
790
|
FALLBACK: "FALLBACK",
|
|
791
791
|
FORCE: "FORCE",
|
|
@@ -1819,6 +1819,13 @@ const se___listOfCmafAdditionalManifest = (input, context) => {
|
|
|
1819
1819
|
return se_CmafAdditionalManifest(entry, context);
|
|
1820
1820
|
});
|
|
1821
1821
|
};
|
|
1822
|
+
const se___listOfColorConversion3DLUTSetting = (input, context) => {
|
|
1823
|
+
return input
|
|
1824
|
+
.filter((e) => e != null)
|
|
1825
|
+
.map((entry) => {
|
|
1826
|
+
return se_ColorConversion3DLUTSetting(entry, context);
|
|
1827
|
+
});
|
|
1828
|
+
};
|
|
1822
1829
|
const se___listOfDashAdditionalManifest = (input, context) => {
|
|
1823
1830
|
return input
|
|
1824
1831
|
.filter((e) => e != null)
|
|
@@ -2344,13 +2351,6 @@ const se_ColorConversion3DLUTSetting = (input, context) => {
|
|
|
2344
2351
|
outputMasteringLuminance: [, , `OutputMasteringLuminance`],
|
|
2345
2352
|
});
|
|
2346
2353
|
};
|
|
2347
|
-
const se_ColorConversion3DLUTSettings = (input, context) => {
|
|
2348
|
-
return input
|
|
2349
|
-
.filter((e) => e != null)
|
|
2350
|
-
.map((entry) => {
|
|
2351
|
-
return se_ColorConversion3DLUTSetting(entry, context);
|
|
2352
|
-
});
|
|
2353
|
-
};
|
|
2354
2354
|
const se_ColorCorrector = (input, context) => {
|
|
2355
2355
|
return take(input, {
|
|
2356
2356
|
brightness: [, , `Brightness`],
|
|
@@ -2987,7 +2987,7 @@ const se_JobSettings = (input, context) => {
|
|
|
2987
2987
|
availBlanking: [, (_) => se_AvailBlanking(_, context), `AvailBlanking`],
|
|
2988
2988
|
colorConversion3DLUTSettings: [
|
|
2989
2989
|
,
|
|
2990
|
-
(_) =>
|
|
2990
|
+
(_) => se___listOfColorConversion3DLUTSetting(_, context),
|
|
2991
2991
|
`ColorConversion3DLUTSettings`,
|
|
2992
2992
|
],
|
|
2993
2993
|
esam: [, (_) => se_EsamSettings(_, context), `Esam`],
|
|
@@ -3009,7 +3009,7 @@ const se_JobTemplateSettings = (input, context) => {
|
|
|
3009
3009
|
availBlanking: [, (_) => se_AvailBlanking(_, context), `AvailBlanking`],
|
|
3010
3010
|
colorConversion3DLUTSettings: [
|
|
3011
3011
|
,
|
|
3012
|
-
(_) =>
|
|
3012
|
+
(_) => se___listOfColorConversion3DLUTSetting(_, context),
|
|
3013
3013
|
`ColorConversion3DLUTSettings`,
|
|
3014
3014
|
],
|
|
3015
3015
|
esam: [, (_) => se_EsamSettings(_, context), `Esam`],
|
|
@@ -3428,6 +3428,8 @@ const se_Rectangle = (input, context) => {
|
|
|
3428
3428
|
};
|
|
3429
3429
|
const se_RemixSettings = (input, context) => {
|
|
3430
3430
|
return take(input, {
|
|
3431
|
+
audioDescriptionAudioChannel: [, , `AudioDescriptionAudioChannel`],
|
|
3432
|
+
audioDescriptionDataChannel: [, , `AudioDescriptionDataChannel`],
|
|
3431
3433
|
channelMapping: [, (_) => se_ChannelMapping(_, context), `ChannelMapping`],
|
|
3432
3434
|
channelsIn: [, , `ChannelsIn`],
|
|
3433
3435
|
channelsOut: [, , `ChannelsOut`],
|
|
@@ -3835,6 +3837,14 @@ const de___listOfCmafAdditionalManifest = (output, context) => {
|
|
|
3835
3837
|
});
|
|
3836
3838
|
return retVal;
|
|
3837
3839
|
};
|
|
3840
|
+
const de___listOfColorConversion3DLUTSetting = (output, context) => {
|
|
3841
|
+
const retVal = (output || [])
|
|
3842
|
+
.filter((e) => e != null)
|
|
3843
|
+
.map((entry) => {
|
|
3844
|
+
return de_ColorConversion3DLUTSetting(entry, context);
|
|
3845
|
+
});
|
|
3846
|
+
return retVal;
|
|
3847
|
+
};
|
|
3838
3848
|
const de___listOfDashAdditionalManifest = (output, context) => {
|
|
3839
3849
|
const retVal = (output || [])
|
|
3840
3850
|
.filter((e) => e != null)
|
|
@@ -4460,14 +4470,6 @@ const de_ColorConversion3DLUTSetting = (output, context) => {
|
|
|
4460
4470
|
OutputMasteringLuminance: [, __expectInt32, `outputMasteringLuminance`],
|
|
4461
4471
|
});
|
|
4462
4472
|
};
|
|
4463
|
-
const de_ColorConversion3DLUTSettings = (output, context) => {
|
|
4464
|
-
const retVal = (output || [])
|
|
4465
|
-
.filter((e) => e != null)
|
|
4466
|
-
.map((entry) => {
|
|
4467
|
-
return de_ColorConversion3DLUTSetting(entry, context);
|
|
4468
|
-
});
|
|
4469
|
-
return retVal;
|
|
4470
|
-
};
|
|
4471
4473
|
const de_ColorCorrector = (output, context) => {
|
|
4472
4474
|
return take(output, {
|
|
4473
4475
|
Brightness: [, __expectInt32, `brightness`],
|
|
@@ -5158,7 +5160,7 @@ const de_JobSettings = (output, context) => {
|
|
|
5158
5160
|
AvailBlanking: [, (_) => de_AvailBlanking(_, context), `availBlanking`],
|
|
5159
5161
|
ColorConversion3DLUTSettings: [
|
|
5160
5162
|
,
|
|
5161
|
-
(_) =>
|
|
5163
|
+
(_) => de___listOfColorConversion3DLUTSetting(_, context),
|
|
5162
5164
|
`colorConversion3DLUTSettings`,
|
|
5163
5165
|
],
|
|
5164
5166
|
Esam: [, (_) => de_EsamSettings(_, context), `esam`],
|
|
@@ -5201,7 +5203,7 @@ const de_JobTemplateSettings = (output, context) => {
|
|
|
5201
5203
|
AvailBlanking: [, (_) => de_AvailBlanking(_, context), `availBlanking`],
|
|
5202
5204
|
ColorConversion3DLUTSettings: [
|
|
5203
5205
|
,
|
|
5204
|
-
(_) =>
|
|
5206
|
+
(_) => de___listOfColorConversion3DLUTSetting(_, context),
|
|
5205
5207
|
`colorConversion3DLUTSettings`,
|
|
5206
5208
|
],
|
|
5207
5209
|
Esam: [, (_) => de_EsamSettings(_, context), `esam`],
|
|
@@ -5669,6 +5671,8 @@ const de_Rectangle = (output, context) => {
|
|
|
5669
5671
|
};
|
|
5670
5672
|
const de_RemixSettings = (output, context) => {
|
|
5671
5673
|
return take(output, {
|
|
5674
|
+
AudioDescriptionAudioChannel: [, __expectInt32, `audioDescriptionAudioChannel`],
|
|
5675
|
+
AudioDescriptionDataChannel: [, __expectInt32, `audioDescriptionDataChannel`],
|
|
5672
5676
|
ChannelMapping: [, (_) => de_ChannelMapping(_, context), `channelMapping`],
|
|
5673
5677
|
ChannelsIn: [, __expectInt32, `channelsIn`],
|
|
5674
5678
|
ChannelsOut: [, __expectInt32, `channelsOut`],
|
|
@@ -55,7 +55,7 @@ declare const CreateJobCommand_base: {
|
|
|
55
55
|
* AvailBlanking: { // AvailBlanking
|
|
56
56
|
* AvailBlankingImage: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
|
-
* ColorConversion3DLUTSettings: [ //
|
|
58
|
+
* ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
59
59
|
* { // ColorConversion3DLUTSetting
|
|
60
60
|
* FileInput: "STRING_VALUE",
|
|
61
61
|
* InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -110,6 +110,8 @@ declare const CreateJobCommand_base: {
|
|
|
110
110
|
* ],
|
|
111
111
|
* ProgramSelection: Number("int"),
|
|
112
112
|
* RemixSettings: { // RemixSettings
|
|
113
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
114
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
113
115
|
* ChannelMapping: { // ChannelMapping
|
|
114
116
|
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
115
117
|
* { // OutputChannelMapping
|
|
@@ -777,6 +779,8 @@ declare const CreateJobCommand_base: {
|
|
|
777
779
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
778
780
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
779
781
|
* RemixSettings: {
|
|
782
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
783
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
780
784
|
* ChannelMapping: {
|
|
781
785
|
* OutputChannels: [
|
|
782
786
|
* {
|
|
@@ -1548,7 +1552,7 @@ declare const CreateJobCommand_base: {
|
|
|
1548
1552
|
* // AvailBlanking: { // AvailBlanking
|
|
1549
1553
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
1550
1554
|
* // },
|
|
1551
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
1555
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
1552
1556
|
* // { // ColorConversion3DLUTSetting
|
|
1553
1557
|
* // FileInput: "STRING_VALUE",
|
|
1554
1558
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -1603,6 +1607,8 @@ declare const CreateJobCommand_base: {
|
|
|
1603
1607
|
* // ],
|
|
1604
1608
|
* // ProgramSelection: Number("int"),
|
|
1605
1609
|
* // RemixSettings: { // RemixSettings
|
|
1610
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
1611
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
1606
1612
|
* // ChannelMapping: { // ChannelMapping
|
|
1607
1613
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
1608
1614
|
* // { // OutputChannelMapping
|
|
@@ -2270,6 +2276,8 @@ declare const CreateJobCommand_base: {
|
|
|
2270
2276
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
2271
2277
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2272
2278
|
* // RemixSettings: {
|
|
2279
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
2280
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
2273
2281
|
* // ChannelMapping: {
|
|
2274
2282
|
* // OutputChannels: [
|
|
2275
2283
|
* // {
|
|
@@ -54,7 +54,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
54
54
|
* AvailBlanking: { // AvailBlanking
|
|
55
55
|
* AvailBlankingImage: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
|
-
* ColorConversion3DLUTSettings: [ //
|
|
57
|
+
* ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
58
58
|
* { // ColorConversion3DLUTSetting
|
|
59
59
|
* FileInput: "STRING_VALUE",
|
|
60
60
|
* InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -109,6 +109,8 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
109
109
|
* ],
|
|
110
110
|
* ProgramSelection: Number("int"),
|
|
111
111
|
* RemixSettings: { // RemixSettings
|
|
112
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
113
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
112
114
|
* ChannelMapping: { // ChannelMapping
|
|
113
115
|
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
114
116
|
* { // OutputChannelMapping
|
|
@@ -763,6 +765,8 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
763
765
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
764
766
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
765
767
|
* RemixSettings: {
|
|
768
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
769
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
766
770
|
* ChannelMapping: {
|
|
767
771
|
* OutputChannels: [
|
|
768
772
|
* {
|
|
@@ -1495,7 +1499,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
1495
1499
|
* // AvailBlanking: { // AvailBlanking
|
|
1496
1500
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
1497
1501
|
* // },
|
|
1498
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
1502
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
1499
1503
|
* // { // ColorConversion3DLUTSetting
|
|
1500
1504
|
* // FileInput: "STRING_VALUE",
|
|
1501
1505
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -1550,6 +1554,8 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
1550
1554
|
* // ],
|
|
1551
1555
|
* // ProgramSelection: Number("int"),
|
|
1552
1556
|
* // RemixSettings: { // RemixSettings
|
|
1557
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
1558
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
1553
1559
|
* // ChannelMapping: { // ChannelMapping
|
|
1554
1560
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
1555
1561
|
* // { // OutputChannelMapping
|
|
@@ -2204,6 +2210,8 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
2204
2210
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
2205
2211
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2206
2212
|
* // RemixSettings: {
|
|
2213
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
2214
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
2207
2215
|
* // ChannelMapping: {
|
|
2208
2216
|
* // OutputChannels: [
|
|
2209
2217
|
* // {
|
|
@@ -168,6 +168,8 @@ declare const CreatePresetCommand_base: {
|
|
|
168
168
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
169
169
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
170
170
|
* RemixSettings: { // RemixSettings
|
|
171
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
172
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
171
173
|
* ChannelMapping: { // ChannelMapping
|
|
172
174
|
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
173
175
|
* { // OutputChannelMapping
|
|
@@ -980,6 +982,8 @@ declare const CreatePresetCommand_base: {
|
|
|
980
982
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
981
983
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
982
984
|
* // RemixSettings: { // RemixSettings
|
|
985
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
986
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
983
987
|
* // ChannelMapping: { // ChannelMapping
|
|
984
988
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
985
989
|
* // { // OutputChannelMapping
|
|
@@ -26,6 +26,8 @@ declare const DescribeEndpointsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
+
* @deprecated
|
|
30
|
+
*
|
|
29
31
|
* Send an request with an empty body to the regional API endpoint to get your account API endpoint.
|
|
30
32
|
* @example
|
|
31
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -98,7 +98,7 @@ declare const GetJobCommand_base: {
|
|
|
98
98
|
* // AvailBlanking: { // AvailBlanking
|
|
99
99
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
100
100
|
* // },
|
|
101
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
101
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
102
102
|
* // { // ColorConversion3DLUTSetting
|
|
103
103
|
* // FileInput: "STRING_VALUE",
|
|
104
104
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -153,6 +153,8 @@ declare const GetJobCommand_base: {
|
|
|
153
153
|
* // ],
|
|
154
154
|
* // ProgramSelection: Number("int"),
|
|
155
155
|
* // RemixSettings: { // RemixSettings
|
|
156
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
157
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
156
158
|
* // ChannelMapping: { // ChannelMapping
|
|
157
159
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
158
160
|
* // { // OutputChannelMapping
|
|
@@ -820,6 +822,8 @@ declare const GetJobCommand_base: {
|
|
|
820
822
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
821
823
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
822
824
|
* // RemixSettings: {
|
|
825
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
826
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
823
827
|
* // ChannelMapping: {
|
|
824
828
|
* // OutputChannels: [
|
|
825
829
|
* // {
|
|
@@ -63,7 +63,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
63
63
|
* // AvailBlanking: { // AvailBlanking
|
|
64
64
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
65
65
|
* // },
|
|
66
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
66
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
67
67
|
* // { // ColorConversion3DLUTSetting
|
|
68
68
|
* // FileInput: "STRING_VALUE",
|
|
69
69
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -118,6 +118,8 @@ declare const GetJobTemplateCommand_base: {
|
|
|
118
118
|
* // ],
|
|
119
119
|
* // ProgramSelection: Number("int"),
|
|
120
120
|
* // RemixSettings: { // RemixSettings
|
|
121
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
122
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
121
123
|
* // ChannelMapping: { // ChannelMapping
|
|
122
124
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
123
125
|
* // { // OutputChannelMapping
|
|
@@ -772,6 +774,8 @@ declare const GetJobTemplateCommand_base: {
|
|
|
772
774
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
773
775
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
774
776
|
* // RemixSettings: {
|
|
777
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
778
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
775
779
|
* // ChannelMapping: {
|
|
776
780
|
* // OutputChannels: [
|
|
777
781
|
* // {
|
|
@@ -177,6 +177,8 @@ declare const GetPresetCommand_base: {
|
|
|
177
177
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
178
178
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
179
179
|
* // RemixSettings: { // RemixSettings
|
|
180
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
181
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
180
182
|
* // ChannelMapping: { // ChannelMapping
|
|
181
183
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
182
184
|
* // { // OutputChannelMapping
|
|
@@ -68,7 +68,7 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
68
68
|
* // AvailBlanking: { // AvailBlanking
|
|
69
69
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
70
70
|
* // },
|
|
71
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
71
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
72
72
|
* // { // ColorConversion3DLUTSetting
|
|
73
73
|
* // FileInput: "STRING_VALUE",
|
|
74
74
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -123,6 +123,8 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
123
123
|
* // ],
|
|
124
124
|
* // ProgramSelection: Number("int"),
|
|
125
125
|
* // RemixSettings: { // RemixSettings
|
|
126
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
127
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
126
128
|
* // ChannelMapping: { // ChannelMapping
|
|
127
129
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
128
130
|
* // { // OutputChannelMapping
|
|
@@ -777,6 +779,8 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
777
779
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
778
780
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
779
781
|
* // RemixSettings: {
|
|
782
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
783
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
780
784
|
* // ChannelMapping: {
|
|
781
785
|
* // OutputChannels: [
|
|
782
786
|
* // {
|
|
@@ -103,7 +103,7 @@ declare const ListJobsCommand_base: {
|
|
|
103
103
|
* // AvailBlanking: { // AvailBlanking
|
|
104
104
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
105
105
|
* // },
|
|
106
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
106
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
107
107
|
* // { // ColorConversion3DLUTSetting
|
|
108
108
|
* // FileInput: "STRING_VALUE",
|
|
109
109
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -158,6 +158,8 @@ declare const ListJobsCommand_base: {
|
|
|
158
158
|
* // ],
|
|
159
159
|
* // ProgramSelection: Number("int"),
|
|
160
160
|
* // RemixSettings: { // RemixSettings
|
|
161
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
162
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
161
163
|
* // ChannelMapping: { // ChannelMapping
|
|
162
164
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
163
165
|
* // { // OutputChannelMapping
|
|
@@ -825,6 +827,8 @@ declare const ListJobsCommand_base: {
|
|
|
825
827
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
826
828
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
827
829
|
* // RemixSettings: {
|
|
830
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
831
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
828
832
|
* // ChannelMapping: {
|
|
829
833
|
* // OutputChannels: [
|
|
830
834
|
* // {
|
|
@@ -183,6 +183,8 @@ declare const ListPresetsCommand_base: {
|
|
|
183
183
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
184
184
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
185
185
|
* // RemixSettings: { // RemixSettings
|
|
186
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
187
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
186
188
|
* // ChannelMapping: { // ChannelMapping
|
|
187
189
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
188
190
|
* // { // OutputChannelMapping
|
|
@@ -54,7 +54,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
54
54
|
* AvailBlanking: { // AvailBlanking
|
|
55
55
|
* AvailBlankingImage: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
|
-
* ColorConversion3DLUTSettings: [ //
|
|
57
|
+
* ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
58
58
|
* { // ColorConversion3DLUTSetting
|
|
59
59
|
* FileInput: "STRING_VALUE",
|
|
60
60
|
* InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -109,6 +109,8 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
109
109
|
* ],
|
|
110
110
|
* ProgramSelection: Number("int"),
|
|
111
111
|
* RemixSettings: { // RemixSettings
|
|
112
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
113
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
112
114
|
* ChannelMapping: { // ChannelMapping
|
|
113
115
|
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
114
116
|
* { // OutputChannelMapping
|
|
@@ -763,6 +765,8 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
763
765
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
764
766
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
765
767
|
* RemixSettings: {
|
|
768
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
769
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
766
770
|
* ChannelMapping: {
|
|
767
771
|
* OutputChannels: [
|
|
768
772
|
* {
|
|
@@ -1492,7 +1496,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1492
1496
|
* // AvailBlanking: { // AvailBlanking
|
|
1493
1497
|
* // AvailBlankingImage: "STRING_VALUE",
|
|
1494
1498
|
* // },
|
|
1495
|
-
* // ColorConversion3DLUTSettings: [ //
|
|
1499
|
+
* // ColorConversion3DLUTSettings: [ // __listOfColorConversion3DLUTSetting
|
|
1496
1500
|
* // { // ColorConversion3DLUTSetting
|
|
1497
1501
|
* // FileInput: "STRING_VALUE",
|
|
1498
1502
|
* // InputColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
@@ -1547,6 +1551,8 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1547
1551
|
* // ],
|
|
1548
1552
|
* // ProgramSelection: Number("int"),
|
|
1549
1553
|
* // RemixSettings: { // RemixSettings
|
|
1554
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
1555
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
1550
1556
|
* // ChannelMapping: { // ChannelMapping
|
|
1551
1557
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
1552
1558
|
* // { // OutputChannelMapping
|
|
@@ -2201,6 +2207,8 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2201
2207
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
2202
2208
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2203
2209
|
* // RemixSettings: {
|
|
2210
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
2211
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
2204
2212
|
* // ChannelMapping: {
|
|
2205
2213
|
* // OutputChannels: [
|
|
2206
2214
|
* // {
|
|
@@ -168,6 +168,8 @@ declare const UpdatePresetCommand_base: {
|
|
|
168
168
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
169
169
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
170
170
|
* RemixSettings: { // RemixSettings
|
|
171
|
+
* AudioDescriptionAudioChannel: Number("int"),
|
|
172
|
+
* AudioDescriptionDataChannel: Number("int"),
|
|
171
173
|
* ChannelMapping: { // ChannelMapping
|
|
172
174
|
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
173
175
|
* { // OutputChannelMapping
|
|
@@ -977,6 +979,8 @@ declare const UpdatePresetCommand_base: {
|
|
|
977
979
|
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
978
980
|
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
979
981
|
* // RemixSettings: { // RemixSettings
|
|
982
|
+
* // AudioDescriptionAudioChannel: Number("int"),
|
|
983
|
+
* // AudioDescriptionDataChannel: Number("int"),
|
|
980
984
|
* // ChannelMapping: { // ChannelMapping
|
|
981
985
|
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
982
986
|
* // { // OutputChannelMapping
|
|
@@ -295,7 +295,7 @@ export interface AacSettings {
|
|
|
295
295
|
Bitrate?: number;
|
|
296
296
|
/**
|
|
297
297
|
* @public
|
|
298
|
-
*
|
|
298
|
+
* AAC Profile.
|
|
299
299
|
*/
|
|
300
300
|
CodecProfile?: AacCodecProfile;
|
|
301
301
|
/**
|
|
@@ -305,7 +305,7 @@ export interface AacSettings {
|
|
|
305
305
|
CodingMode?: AacCodingMode;
|
|
306
306
|
/**
|
|
307
307
|
* @public
|
|
308
|
-
*
|
|
308
|
+
* Rate Control Mode.
|
|
309
309
|
*/
|
|
310
310
|
RateControlMode?: AacRateControlMode;
|
|
311
311
|
/**
|
|
@@ -315,7 +315,7 @@ export interface AacSettings {
|
|
|
315
315
|
RawFormat?: AacRawFormat;
|
|
316
316
|
/**
|
|
317
317
|
* @public
|
|
318
|
-
* Specify the
|
|
318
|
+
* Specify the Sample rate in Hz. Valid sample rates depend on the Profile and Coding mode that you select. The following list shows valid sample rates for each Profile and Coding mode. * LC Profile, Coding mode 1.0, 2.0, and Receiver Mix: 8000, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000. * LC Profile, Coding mode 5.1: 32000, 44100, 48000, 96000. * HEV1 Profile, Coding mode 1.0 and Receiver Mix: 22050, 24000, 32000, 44100, 48000. * HEV1 Profile, Coding mode 2.0 and 5.1: 32000, 44100, 48000, 96000. * HEV2 Profile, Coding mode 2.0: 22050, 24000, 32000, 44100, 48000.
|
|
319
319
|
*/
|
|
320
320
|
SampleRate?: number;
|
|
321
321
|
/**
|
|
@@ -325,7 +325,7 @@ export interface AacSettings {
|
|
|
325
325
|
Specification?: AacSpecification;
|
|
326
326
|
/**
|
|
327
327
|
* @public
|
|
328
|
-
*
|
|
328
|
+
* VBR Quality Level - Only used if rate_control_mode is VBR.
|
|
329
329
|
*/
|
|
330
330
|
VbrQuality?: AacVbrQuality;
|
|
331
331
|
}
|
|
@@ -1526,6 +1526,16 @@ export interface ChannelMapping {
|
|
|
1526
1526
|
* Use Manual audio remixing to adjust audio levels for each audio channel in each output of your job. With audio remixing, you can output more or fewer audio channels than your input audio source provides.
|
|
1527
1527
|
*/
|
|
1528
1528
|
export interface RemixSettings {
|
|
1529
|
+
/**
|
|
1530
|
+
* @public
|
|
1531
|
+
* Optionally specify the channel in your input that contains your audio description audio signal. MediaConvert mixes your audio signal across all output channels, while reducing their volume according to your data stream. When you specify an audio description audio channel, you must also specify an audio description data channel. For more information about audio description signals, see the BBC WHP 198 and 051 white papers.
|
|
1532
|
+
*/
|
|
1533
|
+
AudioDescriptionAudioChannel?: number;
|
|
1534
|
+
/**
|
|
1535
|
+
* @public
|
|
1536
|
+
* Optionally specify the channel in your input that contains your audio description data stream. MediaConvert mixes your audio signal across all output channels, while reducing their volume according to your data stream. When you specify an audio description data channel, you must also specify an audio description audio channel. For more information about audio description signals, see the BBC WHP 198 and 051 white papers.
|
|
1537
|
+
*/
|
|
1538
|
+
AudioDescriptionDataChannel?: number;
|
|
1529
1539
|
/**
|
|
1530
1540
|
* @public
|
|
1531
1541
|
* Channel mapping contains the group of fields that hold the remixing value for each channel, in dB. Specify remix values to indicate how much of the content from your input audio channel you want in your output audio channels. Each instance of the InputChannels or InputChannelsFineTune array specifies these values for one output channel. Use one instance of this array for each output channel. In the console, each array corresponds to a column in the graphical depiction of the mapping matrix. The rows of the graphical matrix correspond to input channels. Valid values are within the range from -60 (mute) through 6. A setting of 0 passes the input channel unchanged to the output channel (no attenuation or amplification). Use InputChannels or InputChannelsFineTune to specify your remix values. Don't use both.
|
|
@@ -2595,6 +2605,55 @@ export interface CmafAdditionalManifest {
|
|
|
2595
2605
|
*/
|
|
2596
2606
|
SelectedOutputs?: string[];
|
|
2597
2607
|
}
|
|
2608
|
+
/**
|
|
2609
|
+
* @public
|
|
2610
|
+
* @enum
|
|
2611
|
+
*/
|
|
2612
|
+
export declare const ColorSpace: {
|
|
2613
|
+
readonly FOLLOW: "FOLLOW";
|
|
2614
|
+
readonly HDR10: "HDR10";
|
|
2615
|
+
readonly HLG_2020: "HLG_2020";
|
|
2616
|
+
readonly P3D65_HDR: "P3D65_HDR";
|
|
2617
|
+
readonly P3D65_SDR: "P3D65_SDR";
|
|
2618
|
+
readonly P3DCI: "P3DCI";
|
|
2619
|
+
readonly REC_601: "REC_601";
|
|
2620
|
+
readonly REC_709: "REC_709";
|
|
2621
|
+
};
|
|
2622
|
+
/**
|
|
2623
|
+
* @public
|
|
2624
|
+
*/
|
|
2625
|
+
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
2626
|
+
/**
|
|
2627
|
+
* @public
|
|
2628
|
+
* Custom 3D lut settings
|
|
2629
|
+
*/
|
|
2630
|
+
export interface ColorConversion3DLUTSetting {
|
|
2631
|
+
/**
|
|
2632
|
+
* @public
|
|
2633
|
+
* Specify the input file S3, HTTP, or HTTPS URL for your 3D LUT .cube file. Note that MediaConvert accepts 3D LUT files up to 8MB in size.
|
|
2634
|
+
*/
|
|
2635
|
+
FileInput?: string;
|
|
2636
|
+
/**
|
|
2637
|
+
* @public
|
|
2638
|
+
* Specify which inputs use this 3D LUT, according to their color space.
|
|
2639
|
+
*/
|
|
2640
|
+
InputColorSpace?: ColorSpace;
|
|
2641
|
+
/**
|
|
2642
|
+
* @public
|
|
2643
|
+
* Specify which inputs use this 3D LUT, according to their luminance. To apply this 3D LUT to HDR10 or P3D65 (HDR) inputs with a specific mastering luminance: Enter an integer from 0 to 2147483647, corresponding to the input's Maximum luminance value. To apply this 3D LUT to any input regardless of its luminance: Leave blank, or enter 0.
|
|
2644
|
+
*/
|
|
2645
|
+
InputMasteringLuminance?: number;
|
|
2646
|
+
/**
|
|
2647
|
+
* @public
|
|
2648
|
+
* Specify which outputs use this 3D LUT, according to their color space.
|
|
2649
|
+
*/
|
|
2650
|
+
OutputColorSpace?: ColorSpace;
|
|
2651
|
+
/**
|
|
2652
|
+
* @public
|
|
2653
|
+
* Specify which outputs use this 3D LUT, according to their luminance. To apply this 3D LUT to HDR10 or P3D65 (HDR) outputs with a specific luminance: Enter an integer from 0 to 2147483647, corresponding to the output's luminance. To apply this 3D LUT to any output regardless of its luminance: Leave blank, or enter 0.
|
|
2654
|
+
*/
|
|
2655
|
+
OutputMasteringLuminance?: number;
|
|
2656
|
+
}
|
|
2598
2657
|
/**
|
|
2599
2658
|
* @public
|
|
2600
2659
|
* Specify the details for each additional DASH manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
|
|
@@ -3550,24 +3609,6 @@ export declare const AlphaBehavior: {
|
|
|
3550
3609
|
* @public
|
|
3551
3610
|
*/
|
|
3552
3611
|
export type AlphaBehavior = (typeof AlphaBehavior)[keyof typeof AlphaBehavior];
|
|
3553
|
-
/**
|
|
3554
|
-
* @public
|
|
3555
|
-
* @enum
|
|
3556
|
-
*/
|
|
3557
|
-
export declare const ColorSpace: {
|
|
3558
|
-
readonly FOLLOW: "FOLLOW";
|
|
3559
|
-
readonly HDR10: "HDR10";
|
|
3560
|
-
readonly HLG_2020: "HLG_2020";
|
|
3561
|
-
readonly P3D65_HDR: "P3D65_HDR";
|
|
3562
|
-
readonly P3D65_SDR: "P3D65_SDR";
|
|
3563
|
-
readonly P3DCI: "P3DCI";
|
|
3564
|
-
readonly REC_601: "REC_601";
|
|
3565
|
-
readonly REC_709: "REC_709";
|
|
3566
|
-
};
|
|
3567
|
-
/**
|
|
3568
|
-
* @public
|
|
3569
|
-
*/
|
|
3570
|
-
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
3571
3612
|
/**
|
|
3572
3613
|
* @public
|
|
3573
3614
|
* @enum
|
|
@@ -4166,37 +4207,6 @@ export interface AvailBlanking {
|
|
|
4166
4207
|
*/
|
|
4167
4208
|
AvailBlankingImage?: string;
|
|
4168
4209
|
}
|
|
4169
|
-
/**
|
|
4170
|
-
* @public
|
|
4171
|
-
* Custom 3D lut settings
|
|
4172
|
-
*/
|
|
4173
|
-
export interface ColorConversion3DLUTSetting {
|
|
4174
|
-
/**
|
|
4175
|
-
* @public
|
|
4176
|
-
* Specify the input file S3, HTTP, or HTTPS URL for your 3D LUT .cube file. Note that MediaConvert accepts 3D LUT files up to 8MB in size.
|
|
4177
|
-
*/
|
|
4178
|
-
FileInput?: string;
|
|
4179
|
-
/**
|
|
4180
|
-
* @public
|
|
4181
|
-
* Specify which inputs use this 3D LUT, according to their color space.
|
|
4182
|
-
*/
|
|
4183
|
-
InputColorSpace?: ColorSpace;
|
|
4184
|
-
/**
|
|
4185
|
-
* @public
|
|
4186
|
-
* Specify which inputs use this 3D LUT, according to their luminance. To apply this 3D LUT to HDR10 or P3D65 (HDR) inputs with a specific mastering luminance: Enter an integer from 0 to 2147483647, corresponding to the input's Maximum luminance value. To apply this 3D LUT to any input regardless of its luminance: Leave blank, or enter 0.
|
|
4187
|
-
*/
|
|
4188
|
-
InputMasteringLuminance?: number;
|
|
4189
|
-
/**
|
|
4190
|
-
* @public
|
|
4191
|
-
* Specify which outputs use this 3D LUT, according to their color space.
|
|
4192
|
-
*/
|
|
4193
|
-
OutputColorSpace?: ColorSpace;
|
|
4194
|
-
/**
|
|
4195
|
-
* @public
|
|
4196
|
-
* Specify which outputs use this 3D LUT, according to their luminance. To apply this 3D LUT to HDR10 or P3D65 (HDR) outputs with a specific luminance: Enter an integer from 0 to 2147483647, corresponding to the output's luminance. To apply this 3D LUT to any output regardless of its luminance: Leave blank, or enter 0.
|
|
4197
|
-
*/
|
|
4198
|
-
OutputMasteringLuminance?: number;
|
|
4199
|
-
}
|
|
4200
4210
|
/**
|
|
4201
4211
|
* @public
|
|
4202
4212
|
* ESAM ManifestConfirmConditionNotification defined by OC-SP-ESAM-API-I03-131025.
|
|
@@ -335,6 +335,8 @@ export declare const DescribeEndpointsMode: {
|
|
|
335
335
|
export type DescribeEndpointsMode = (typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
336
336
|
/**
|
|
337
337
|
* @public
|
|
338
|
+
* @deprecated
|
|
339
|
+
*
|
|
338
340
|
* DescribeEndpointsRequest
|
|
339
341
|
*/
|
|
340
342
|
export interface DescribeEndpointsRequest {
|
|
@@ -345,6 +347,8 @@ export interface DescribeEndpointsRequest {
|
|
|
345
347
|
MaxResults?: number;
|
|
346
348
|
/**
|
|
347
349
|
* @public
|
|
350
|
+
* @deprecated
|
|
351
|
+
*
|
|
348
352
|
* Optional field, defaults to DEFAULT. Specify DEFAULT for this operation to return your endpoints if any exist, or to create an endpoint for you and return it if one doesn't already exist. Specify GET_ONLY to return your endpoints if any exist, or an empty list if none exist.
|
|
349
353
|
*/
|
|
350
354
|
Mode?: DescribeEndpointsMode;
|
|
@@ -711,6 +711,8 @@ export interface ChannelMapping {
|
|
|
711
711
|
OutputChannels?: OutputChannelMapping[];
|
|
712
712
|
}
|
|
713
713
|
export interface RemixSettings {
|
|
714
|
+
AudioDescriptionAudioChannel?: number;
|
|
715
|
+
AudioDescriptionDataChannel?: number;
|
|
714
716
|
ChannelMapping?: ChannelMapping;
|
|
715
717
|
ChannelsIn?: number;
|
|
716
718
|
ChannelsOut?: number;
|
|
@@ -1098,6 +1100,24 @@ export interface CmafAdditionalManifest {
|
|
|
1098
1100
|
ManifestNameModifier?: string;
|
|
1099
1101
|
SelectedOutputs?: string[];
|
|
1100
1102
|
}
|
|
1103
|
+
export declare const ColorSpace: {
|
|
1104
|
+
readonly FOLLOW: "FOLLOW";
|
|
1105
|
+
readonly HDR10: "HDR10";
|
|
1106
|
+
readonly HLG_2020: "HLG_2020";
|
|
1107
|
+
readonly P3D65_HDR: "P3D65_HDR";
|
|
1108
|
+
readonly P3D65_SDR: "P3D65_SDR";
|
|
1109
|
+
readonly P3DCI: "P3DCI";
|
|
1110
|
+
readonly REC_601: "REC_601";
|
|
1111
|
+
readonly REC_709: "REC_709";
|
|
1112
|
+
};
|
|
1113
|
+
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
1114
|
+
export interface ColorConversion3DLUTSetting {
|
|
1115
|
+
FileInput?: string;
|
|
1116
|
+
InputColorSpace?: ColorSpace;
|
|
1117
|
+
InputMasteringLuminance?: number;
|
|
1118
|
+
OutputColorSpace?: ColorSpace;
|
|
1119
|
+
OutputMasteringLuminance?: number;
|
|
1120
|
+
}
|
|
1101
1121
|
export interface DashAdditionalManifest {
|
|
1102
1122
|
ManifestNameModifier?: string;
|
|
1103
1123
|
SelectedOutputs?: string[];
|
|
@@ -1408,17 +1428,6 @@ export declare const AlphaBehavior: {
|
|
|
1408
1428
|
readonly REMAP_TO_LUMA: "REMAP_TO_LUMA";
|
|
1409
1429
|
};
|
|
1410
1430
|
export type AlphaBehavior = (typeof AlphaBehavior)[keyof typeof AlphaBehavior];
|
|
1411
|
-
export declare const ColorSpace: {
|
|
1412
|
-
readonly FOLLOW: "FOLLOW";
|
|
1413
|
-
readonly HDR10: "HDR10";
|
|
1414
|
-
readonly HLG_2020: "HLG_2020";
|
|
1415
|
-
readonly P3D65_HDR: "P3D65_HDR";
|
|
1416
|
-
readonly P3D65_SDR: "P3D65_SDR";
|
|
1417
|
-
readonly P3DCI: "P3DCI";
|
|
1418
|
-
readonly REC_601: "REC_601";
|
|
1419
|
-
readonly REC_709: "REC_709";
|
|
1420
|
-
};
|
|
1421
|
-
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
1422
1431
|
export declare const ColorSpaceUsage: {
|
|
1423
1432
|
readonly FALLBACK: "FALLBACK";
|
|
1424
1433
|
readonly FORCE: "FORCE";
|
|
@@ -1583,13 +1592,6 @@ export interface QueueTransition {
|
|
|
1583
1592
|
export interface AvailBlanking {
|
|
1584
1593
|
AvailBlankingImage?: string;
|
|
1585
1594
|
}
|
|
1586
|
-
export interface ColorConversion3DLUTSetting {
|
|
1587
|
-
FileInput?: string;
|
|
1588
|
-
InputColorSpace?: ColorSpace;
|
|
1589
|
-
InputMasteringLuminance?: number;
|
|
1590
|
-
OutputColorSpace?: ColorSpace;
|
|
1591
|
-
OutputMasteringLuminance?: number;
|
|
1592
|
-
}
|
|
1593
1595
|
export interface EsamManifestConfirmConditionNotification {
|
|
1594
1596
|
MccXml?: string;
|
|
1595
1597
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.505.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|