Skip to content

Commit 79339f0

Browse files
author
AWS
committed
AWS Elemental MediaLive Update: AWS Elemental MediaLive now has a field called "SubtitleRows" for controlling subtitle row count for DVB-Sub and Burn-In captions outputs
1 parent 9afec44 commit 79339f0

File tree

3 files changed

+34
-44
lines changed

3 files changed

+34
-44
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Elemental MediaLive",
4+
"contributor": "",
5+
"description": "AWS Elemental MediaLive now has a field called \"SubtitleRows\" for controlling subtitle row count for DVB-Sub and Burn-In captions outputs"
6+
}

services/medialive/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -364,17 +364,6 @@
364364
"UseDualStack": false
365365
}
366366
},
367-
{
368-
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled",
369-
"expect": {
370-
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
371-
},
372-
"params": {
373-
"Region": "us-iso-east-1",
374-
"UseFIPS": true,
375-
"UseDualStack": true
376-
}
377-
},
378367
{
379368
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
380369
"expect": {
@@ -388,28 +377,6 @@
388377
"UseDualStack": false
389378
}
390379
},
391-
{
392-
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled",
393-
"expect": {
394-
"error": "DualStack is enabled but this partition does not support DualStack"
395-
},
396-
"params": {
397-
"Region": "us-iso-east-1",
398-
"UseFIPS": false,
399-
"UseDualStack": true
400-
}
401-
},
402-
{
403-
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack enabled",
404-
"expect": {
405-
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
406-
},
407-
"params": {
408-
"Region": "us-isob-east-1",
409-
"UseFIPS": true,
410-
"UseDualStack": true
411-
}
412-
},
413380
{
414381
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
415382
"expect": {
@@ -423,17 +390,6 @@
423390
"UseDualStack": false
424391
}
425392
},
426-
{
427-
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack enabled",
428-
"expect": {
429-
"error": "DualStack is enabled but this partition does not support DualStack"
430-
},
431-
"params": {
432-
"Region": "us-isob-east-1",
433-
"UseFIPS": false,
434-
"UseDualStack": true
435-
}
436-
},
437393
{
438394
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
439395
"expect": {

services/medialive/src/main/resources/codegen-resources/service-2.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6891,6 +6891,11 @@
68916891
"shape": "__integerMin0",
68926892
"locationName": "yPosition",
68936893
"documentation": "Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match."
6894+
},
6895+
"SubtitleRows": {
6896+
"shape": "BurnInDestinationSubtitleRows",
6897+
"locationName": "subtitleRows",
6898+
"documentation": "Applies only when the input captions are Teletext and the output captions are DVB-Sub or Burn-In. Choose the number of lines for the captions bitmap. The captions bitmap is 700 wide × 576 high and will be laid over the video. For example, a value of 16 divides the bitmap into 16 lines, with each line 36 pixels high (16 × 36 = 576). The default is 24 (24 pixels high). Enter the same number in every encode in every output that converts the same Teletext source to DVB-Sub or Burn-in."
68946899
}
68956900
},
68966901
"documentation": "Burn In Destination Settings"
@@ -9777,6 +9782,11 @@
97779782
"shape": "__integerMin0",
97789783
"locationName": "yPosition",
97799784
"documentation": "Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match."
9785+
},
9786+
"SubtitleRows": {
9787+
"shape": "DvbSubDestinationSubtitleRows",
9788+
"locationName": "subtitleRows",
9789+
"documentation": "Applies only when the input captions are Teletext and the output captions are DVB-Sub or Burn-In. Choose the number of lines for the captions bitmap. The captions bitmap is 700 wide × 576 high and will be laid over the video. For example, a value of 16 divides the bitmap into 16 lines, with each line 36 pixels high (16 × 36 = 576). The default is 24 (24 pixels high). Enter the same number in every encode in every output that converts the same Teletext source to DVB-Sub or Burn-in."
97809790
}
97819791
},
97829792
"documentation": "Dvb Sub Destination Settings"
@@ -29303,6 +29313,24 @@
2930329313
"shape": "AdditionalDestinations"
2930429314
},
2930529315
"documentation": "Placeholder documentation for __listOfAdditionalDestinations"
29316+
},
29317+
"BurnInDestinationSubtitleRows": {
29318+
"type": "string",
29319+
"documentation": "Burn In Destination Subtitle Rows",
29320+
"enum": [
29321+
"ROWS_16",
29322+
"ROWS_20",
29323+
"ROWS_24"
29324+
]
29325+
},
29326+
"DvbSubDestinationSubtitleRows": {
29327+
"type": "string",
29328+
"documentation": "Dvb Sub Destination Subtitle Rows",
29329+
"enum": [
29330+
"ROWS_16",
29331+
"ROWS_20",
29332+
"ROWS_24"
29333+
]
2930629334
}
2930729335
},
2930829336
"documentation": "API for AWS Elemental MediaLive"

0 commit comments

Comments
 (0)