Skip to content

Commit 08f266e

Browse files
author
awstools
committed
feat(client-mediaconvert): This release adds support for the AVC3 codec and fixes an alignment issue with Japanese vertical captions.
1 parent 6ed6c12 commit 08f266e

16 files changed

+86
-21
lines changed

clients/client-mediaconvert/src/commands/CreateJobCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,6 +1199,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
11991199
* Telecine: "NONE" || "SOFT" || "HARD",
12001200
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
12011201
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1202+
* WriteMp4PackagingType: "AVC1" || "AVC3",
12021203
* },
12031204
* H265Settings: { // H265Settings
12041205
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
@@ -2754,6 +2755,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
27542755
* // Telecine: "NONE" || "SOFT" || "HARD",
27552756
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
27562757
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
2758+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
27572759
* // },
27582760
* // H265Settings: { // H265Settings
27592761
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,7 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
11801180
* Telecine: "NONE" || "SOFT" || "HARD",
11811181
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
11821182
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1183+
* WriteMp4PackagingType: "AVC1" || "AVC3",
11831184
* },
11841185
* H265Settings: { // H265Settings
11851186
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
@@ -2677,6 +2678,7 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
26772678
* // Telecine: "NONE" || "SOFT" || "HARD",
26782679
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
26792680
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
2681+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
26802682
* // },
26812683
* // H265Settings: { // H265Settings
26822684
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/CreatePresetCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
528528
* Telecine: "NONE" || "SOFT" || "HARD",
529529
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
530530
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
531+
* WriteMp4PackagingType: "AVC1" || "AVC3",
531532
* },
532533
* H265Settings: { // H265Settings
533534
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
@@ -1354,6 +1355,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
13541355
* // Telecine: "NONE" || "SOFT" || "HARD",
13551356
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
13561357
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1358+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
13571359
* // },
13581360
* // H265Settings: { // H265Settings
13591361
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/GetJobCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,6 +1243,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
12431243
* // Telecine: "NONE" || "SOFT" || "HARD",
12441244
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
12451245
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1246+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
12461247
* // },
12471248
* // H265Settings: { // H265Settings
12481249
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,6 +1189,7 @@ export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __M
11891189
* // Telecine: "NONE" || "SOFT" || "HARD",
11901190
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
11911191
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1192+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
11921193
* // },
11931194
* // H265Settings: { // H265Settings
11941195
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/GetPresetCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBea
537537
* // Telecine: "NONE" || "SOFT" || "HARD",
538538
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
539539
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
540+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
540541
* // },
541542
* // H265Settings: { // H265Settings
542543
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
11941194
* // Telecine: "NONE" || "SOFT" || "HARD",
11951195
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
11961196
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1197+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
11971198
* // },
11981199
* // H265Settings: { // H265Settings
11991200
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/ListJobsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
12481248
* // Telecine: "NONE" || "SOFT" || "HARD",
12491249
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
12501250
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1251+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
12511252
* // },
12521253
* // H265Settings: { // H265Settings
12531254
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/ListPresetsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,7 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat
543543
* // Telecine: "NONE" || "SOFT" || "HARD",
544544
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
545545
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
546+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
546547
* // },
547548
* // H265Settings: { // H265Settings
548549
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

clients/client-mediaconvert/src/commands/SearchJobsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,6 +1249,7 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB
12491249
* // Telecine: "NONE" || "SOFT" || "HARD",
12501250
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
12511251
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
1252+
* // WriteMp4PackagingType: "AVC1" || "AVC3",
12521253
* // },
12531254
* // H265Settings: { // H265Settings
12541255
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",

0 commit comments

Comments
 (0)