aws-sdk-mediaconvert 1.0.0 → 1.1.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +49 -1
- data/lib/aws-sdk-mediaconvert/client_api.rb +5 -0
- data/lib/aws-sdk-mediaconvert/types.rb +87 -38
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 288f002c0ffa1806d8f4abfac0708296d0442c4e
|
4
|
+
data.tar.gz: f594b065a5d696975bd6caf23605a07e13fe2019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 401a53754b47445014d4ed682f3740d9247cddf70551fc47b02834b0ab869deca429995f5f96775e72545470ef86c0b64af708f64bcce19c4887397092adf29b
|
7
|
+
data.tar.gz: 943baac75f841b2013d38e99e1a73fcafc056261b342ce972cfcc84c77b5ab5b24d23cb07a2078cdc0fbf988d78413f3ad555a006ad26674bfbcc950bce48a9c
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
@@ -577,6 +577,7 @@ module Aws::MediaConvert
|
|
577
577
|
# fragment_time: 1.0,
|
578
578
|
# max_pcr_interval: 1,
|
579
579
|
# min_ebp_interval: 1,
|
580
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
580
581
|
# null_packet_bitrate: 1.0,
|
581
582
|
# pat_interval: 1,
|
582
583
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -591,12 +592,14 @@ module Aws::MediaConvert
|
|
591
592
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
592
593
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
593
594
|
# segmentation_time: 1.0,
|
595
|
+
# timed_metadata_pid: 1,
|
594
596
|
# transport_stream_id: 1,
|
595
597
|
# video_pid: 1,
|
596
598
|
# },
|
597
599
|
# m3u_8_settings: {
|
598
600
|
# audio_frames_per_pes: 1,
|
599
601
|
# audio_pids: [1],
|
602
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
600
603
|
# pat_interval: 1,
|
601
604
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
602
605
|
# pcr_pid: 1,
|
@@ -1149,6 +1152,7 @@ module Aws::MediaConvert
|
|
1149
1152
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
1150
1153
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
1151
1154
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
1155
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
1152
1156
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
1153
1157
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
1154
1158
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -1163,11 +1167,13 @@ module Aws::MediaConvert
|
|
1163
1167
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
1164
1168
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
1165
1169
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
1170
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
1166
1171
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
1167
1172
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
1168
1173
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
1169
1174
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
1170
1175
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
1176
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
1171
1177
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
1172
1178
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
1173
1179
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -1798,6 +1804,7 @@ module Aws::MediaConvert
|
|
1798
1804
|
# fragment_time: 1.0,
|
1799
1805
|
# max_pcr_interval: 1,
|
1800
1806
|
# min_ebp_interval: 1,
|
1807
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1801
1808
|
# null_packet_bitrate: 1.0,
|
1802
1809
|
# pat_interval: 1,
|
1803
1810
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -1812,12 +1819,14 @@ module Aws::MediaConvert
|
|
1812
1819
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
1813
1820
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
1814
1821
|
# segmentation_time: 1.0,
|
1822
|
+
# timed_metadata_pid: 1,
|
1815
1823
|
# transport_stream_id: 1,
|
1816
1824
|
# video_pid: 1,
|
1817
1825
|
# },
|
1818
1826
|
# m3u_8_settings: {
|
1819
1827
|
# audio_frames_per_pes: 1,
|
1820
1828
|
# audio_pids: [1],
|
1829
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1821
1830
|
# pat_interval: 1,
|
1822
1831
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
1823
1832
|
# pcr_pid: 1,
|
@@ -2360,6 +2369,7 @@ module Aws::MediaConvert
|
|
2360
2369
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
2361
2370
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
2362
2371
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
2372
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
2363
2373
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
2364
2374
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
2365
2375
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -2374,11 +2384,13 @@ module Aws::MediaConvert
|
|
2374
2384
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
2375
2385
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
2376
2386
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
2387
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
2377
2388
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
2378
2389
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
2379
2390
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
2380
2391
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
2381
2392
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
2393
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
2382
2394
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
2383
2395
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
2384
2396
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -2810,6 +2822,7 @@ module Aws::MediaConvert
|
|
2810
2822
|
# fragment_time: 1.0,
|
2811
2823
|
# max_pcr_interval: 1,
|
2812
2824
|
# min_ebp_interval: 1,
|
2825
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
2813
2826
|
# null_packet_bitrate: 1.0,
|
2814
2827
|
# pat_interval: 1,
|
2815
2828
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -2824,12 +2837,14 @@ module Aws::MediaConvert
|
|
2824
2837
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
2825
2838
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
2826
2839
|
# segmentation_time: 1.0,
|
2840
|
+
# timed_metadata_pid: 1,
|
2827
2841
|
# transport_stream_id: 1,
|
2828
2842
|
# video_pid: 1,
|
2829
2843
|
# },
|
2830
2844
|
# m3u_8_settings: {
|
2831
2845
|
# audio_frames_per_pes: 1,
|
2832
2846
|
# audio_pids: [1],
|
2847
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
2833
2848
|
# pat_interval: 1,
|
2834
2849
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
2835
2850
|
# pcr_pid: 1,
|
@@ -3216,6 +3231,7 @@ module Aws::MediaConvert
|
|
3216
3231
|
# resp.preset.settings.container_settings.m2ts_settings.fragment_time #=> Float
|
3217
3232
|
# resp.preset.settings.container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
3218
3233
|
# resp.preset.settings.container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
3234
|
+
# resp.preset.settings.container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
3219
3235
|
# resp.preset.settings.container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
3220
3236
|
# resp.preset.settings.container_settings.m2ts_settings.pat_interval #=> Integer
|
3221
3237
|
# resp.preset.settings.container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -3230,11 +3246,13 @@ module Aws::MediaConvert
|
|
3230
3246
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
3231
3247
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
3232
3248
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
3249
|
+
# resp.preset.settings.container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
3233
3250
|
# resp.preset.settings.container_settings.m2ts_settings.transport_stream_id #=> Integer
|
3234
3251
|
# resp.preset.settings.container_settings.m2ts_settings.video_pid #=> Integer
|
3235
3252
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
3236
3253
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
|
3237
3254
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
3255
|
+
# resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
3238
3256
|
# resp.preset.settings.container_settings.m3u_8_settings.pat_interval #=> Integer
|
3239
3257
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
3240
3258
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -3876,6 +3894,7 @@ module Aws::MediaConvert
|
|
3876
3894
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
3877
3895
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
3878
3896
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
3897
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
3879
3898
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
3880
3899
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
3881
3900
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -3890,11 +3909,13 @@ module Aws::MediaConvert
|
|
3890
3909
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
3891
3910
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
3892
3911
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
3912
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
3893
3913
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
3894
3914
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
3895
3915
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
3896
3916
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
3897
3917
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
3918
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
3898
3919
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
3899
3920
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
3900
3921
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -4405,6 +4426,7 @@ module Aws::MediaConvert
|
|
4405
4426
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
4406
4427
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
4407
4428
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
4429
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
4408
4430
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
4409
4431
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
4410
4432
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -4419,11 +4441,13 @@ module Aws::MediaConvert
|
|
4419
4441
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
4420
4442
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
4421
4443
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
4444
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
4422
4445
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
4423
4446
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
4424
4447
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
4425
4448
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
4426
4449
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
4450
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
4427
4451
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
4428
4452
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
4429
4453
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -4803,6 +4827,7 @@ module Aws::MediaConvert
|
|
4803
4827
|
# resp.preset.settings.container_settings.m2ts_settings.fragment_time #=> Float
|
4804
4828
|
# resp.preset.settings.container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
4805
4829
|
# resp.preset.settings.container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
4830
|
+
# resp.preset.settings.container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
4806
4831
|
# resp.preset.settings.container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
4807
4832
|
# resp.preset.settings.container_settings.m2ts_settings.pat_interval #=> Integer
|
4808
4833
|
# resp.preset.settings.container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -4817,11 +4842,13 @@ module Aws::MediaConvert
|
|
4817
4842
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
4818
4843
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
4819
4844
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
4845
|
+
# resp.preset.settings.container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
4820
4846
|
# resp.preset.settings.container_settings.m2ts_settings.transport_stream_id #=> Integer
|
4821
4847
|
# resp.preset.settings.container_settings.m2ts_settings.video_pid #=> Integer
|
4822
4848
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
4823
4849
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
|
4824
4850
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
4851
|
+
# resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
4825
4852
|
# resp.preset.settings.container_settings.m3u_8_settings.pat_interval #=> Integer
|
4826
4853
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
4827
4854
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -5374,6 +5401,7 @@ module Aws::MediaConvert
|
|
5374
5401
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
5375
5402
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
5376
5403
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
5404
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
5377
5405
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
5378
5406
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
5379
5407
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -5388,11 +5416,13 @@ module Aws::MediaConvert
|
|
5388
5416
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
5389
5417
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
5390
5418
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
5419
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
5391
5420
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
5392
5421
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
5393
5422
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
5394
5423
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
5395
5424
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
5425
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
5396
5426
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
5397
5427
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
5398
5428
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -5933,6 +5963,7 @@ module Aws::MediaConvert
|
|
5933
5963
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
5934
5964
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
5935
5965
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
5966
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
5936
5967
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
5937
5968
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
5938
5969
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -5947,11 +5978,13 @@ module Aws::MediaConvert
|
|
5947
5978
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
5948
5979
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
5949
5980
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
5981
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
5950
5982
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
5951
5983
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
5952
5984
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
5953
5985
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
5954
5986
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
5987
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
5955
5988
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
5956
5989
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
5957
5990
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -6366,6 +6399,7 @@ module Aws::MediaConvert
|
|
6366
6399
|
# resp.presets[0].settings.container_settings.m2ts_settings.fragment_time #=> Float
|
6367
6400
|
# resp.presets[0].settings.container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
6368
6401
|
# resp.presets[0].settings.container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
6402
|
+
# resp.presets[0].settings.container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
6369
6403
|
# resp.presets[0].settings.container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
6370
6404
|
# resp.presets[0].settings.container_settings.m2ts_settings.pat_interval #=> Integer
|
6371
6405
|
# resp.presets[0].settings.container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -6380,11 +6414,13 @@ module Aws::MediaConvert
|
|
6380
6414
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
6381
6415
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
6382
6416
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
6417
|
+
# resp.presets[0].settings.container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
6383
6418
|
# resp.presets[0].settings.container_settings.m2ts_settings.transport_stream_id #=> Integer
|
6384
6419
|
# resp.presets[0].settings.container_settings.m2ts_settings.video_pid #=> Integer
|
6385
6420
|
# resp.presets[0].settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
6386
6421
|
# resp.presets[0].settings.container_settings.m3u_8_settings.audio_pids #=> Array
|
6387
6422
|
# resp.presets[0].settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
6423
|
+
# resp.presets[0].settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
6388
6424
|
# resp.presets[0].settings.container_settings.m3u_8_settings.pat_interval #=> Integer
|
6389
6425
|
# resp.presets[0].settings.container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
6390
6426
|
# resp.presets[0].settings.container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -7049,6 +7085,7 @@ module Aws::MediaConvert
|
|
7049
7085
|
# fragment_time: 1.0,
|
7050
7086
|
# max_pcr_interval: 1,
|
7051
7087
|
# min_ebp_interval: 1,
|
7088
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
7052
7089
|
# null_packet_bitrate: 1.0,
|
7053
7090
|
# pat_interval: 1,
|
7054
7091
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -7063,12 +7100,14 @@ module Aws::MediaConvert
|
|
7063
7100
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
7064
7101
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
7065
7102
|
# segmentation_time: 1.0,
|
7103
|
+
# timed_metadata_pid: 1,
|
7066
7104
|
# transport_stream_id: 1,
|
7067
7105
|
# video_pid: 1,
|
7068
7106
|
# },
|
7069
7107
|
# m3u_8_settings: {
|
7070
7108
|
# audio_frames_per_pes: 1,
|
7071
7109
|
# audio_pids: [1],
|
7110
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
7072
7111
|
# pat_interval: 1,
|
7073
7112
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
7074
7113
|
# pcr_pid: 1,
|
@@ -7611,6 +7650,7 @@ module Aws::MediaConvert
|
|
7611
7650
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.fragment_time #=> Float
|
7612
7651
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
7613
7652
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
7653
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
7614
7654
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
7615
7655
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pat_interval #=> Integer
|
7616
7656
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -7625,11 +7665,13 @@ module Aws::MediaConvert
|
|
7625
7665
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
7626
7666
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
7627
7667
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.segmentation_time #=> Float
|
7668
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
7628
7669
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.transport_stream_id #=> Integer
|
7629
7670
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m2ts_settings.video_pid #=> Integer
|
7630
7671
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
7631
7672
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids #=> Array
|
7632
7673
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
7674
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
7633
7675
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pat_interval #=> Integer
|
7634
7676
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
7635
7677
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -8059,6 +8101,7 @@ module Aws::MediaConvert
|
|
8059
8101
|
# fragment_time: 1.0,
|
8060
8102
|
# max_pcr_interval: 1,
|
8061
8103
|
# min_ebp_interval: 1,
|
8104
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
8062
8105
|
# null_packet_bitrate: 1.0,
|
8063
8106
|
# pat_interval: 1,
|
8064
8107
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -8073,12 +8116,14 @@ module Aws::MediaConvert
|
|
8073
8116
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
8074
8117
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
8075
8118
|
# segmentation_time: 1.0,
|
8119
|
+
# timed_metadata_pid: 1,
|
8076
8120
|
# transport_stream_id: 1,
|
8077
8121
|
# video_pid: 1,
|
8078
8122
|
# },
|
8079
8123
|
# m3u_8_settings: {
|
8080
8124
|
# audio_frames_per_pes: 1,
|
8081
8125
|
# audio_pids: [1],
|
8126
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
8082
8127
|
# pat_interval: 1,
|
8083
8128
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
8084
8129
|
# pcr_pid: 1,
|
@@ -8465,6 +8510,7 @@ module Aws::MediaConvert
|
|
8465
8510
|
# resp.preset.settings.container_settings.m2ts_settings.fragment_time #=> Float
|
8466
8511
|
# resp.preset.settings.container_settings.m2ts_settings.max_pcr_interval #=> Integer
|
8467
8512
|
# resp.preset.settings.container_settings.m2ts_settings.min_ebp_interval #=> Integer
|
8513
|
+
# resp.preset.settings.container_settings.m2ts_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
8468
8514
|
# resp.preset.settings.container_settings.m2ts_settings.null_packet_bitrate #=> Float
|
8469
8515
|
# resp.preset.settings.container_settings.m2ts_settings.pat_interval #=> Integer
|
8470
8516
|
# resp.preset.settings.container_settings.m2ts_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
@@ -8479,11 +8525,13 @@ module Aws::MediaConvert
|
|
8479
8525
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
8480
8526
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
8481
8527
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
8528
|
+
# resp.preset.settings.container_settings.m2ts_settings.timed_metadata_pid #=> Integer
|
8482
8529
|
# resp.preset.settings.container_settings.m2ts_settings.transport_stream_id #=> Integer
|
8483
8530
|
# resp.preset.settings.container_settings.m2ts_settings.video_pid #=> Integer
|
8484
8531
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
8485
8532
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids #=> Array
|
8486
8533
|
# resp.preset.settings.container_settings.m3u_8_settings.audio_pids[0] #=> Integer
|
8534
|
+
# resp.preset.settings.container_settings.m3u_8_settings.nielsen_id_3 #=> String, one of "INSERT", "NONE"
|
8487
8535
|
# resp.preset.settings.container_settings.m3u_8_settings.pat_interval #=> Integer
|
8488
8536
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_control #=> String, one of "PCR_EVERY_PES_PACKET", "CONFIGURED_PCR_PERIOD"
|
8489
8537
|
# resp.preset.settings.container_settings.m3u_8_settings.pcr_pid #=> Integer
|
@@ -8752,7 +8800,7 @@ module Aws::MediaConvert
|
|
8752
8800
|
params: params,
|
8753
8801
|
config: config)
|
8754
8802
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
8755
|
-
context[:gem_version] = '1.
|
8803
|
+
context[:gem_version] = '1.1.0'
|
8756
8804
|
Seahorse::Client::Request.new(handlers, context)
|
8757
8805
|
end
|
8758
8806
|
|
@@ -262,12 +262,14 @@ module Aws::MediaConvert
|
|
262
262
|
M2tsEbpAudioInterval = Shapes::StringShape.new(name: 'M2tsEbpAudioInterval')
|
263
263
|
M2tsEbpPlacement = Shapes::StringShape.new(name: 'M2tsEbpPlacement')
|
264
264
|
M2tsEsRateInPes = Shapes::StringShape.new(name: 'M2tsEsRateInPes')
|
265
|
+
M2tsNielsenId3 = Shapes::StringShape.new(name: 'M2tsNielsenId3')
|
265
266
|
M2tsPcrControl = Shapes::StringShape.new(name: 'M2tsPcrControl')
|
266
267
|
M2tsRateMode = Shapes::StringShape.new(name: 'M2tsRateMode')
|
267
268
|
M2tsScte35Source = Shapes::StringShape.new(name: 'M2tsScte35Source')
|
268
269
|
M2tsSegmentationMarkers = Shapes::StringShape.new(name: 'M2tsSegmentationMarkers')
|
269
270
|
M2tsSegmentationStyle = Shapes::StringShape.new(name: 'M2tsSegmentationStyle')
|
270
271
|
M2tsSettings = Shapes::StructureShape.new(name: 'M2tsSettings')
|
272
|
+
M3u8NielsenId3 = Shapes::StringShape.new(name: 'M3u8NielsenId3')
|
271
273
|
M3u8PcrControl = Shapes::StringShape.new(name: 'M3u8PcrControl')
|
272
274
|
M3u8Scte35Source = Shapes::StringShape.new(name: 'M3u8Scte35Source')
|
273
275
|
M3u8Settings = Shapes::StructureShape.new(name: 'M3u8Settings')
|
@@ -1049,6 +1051,7 @@ module Aws::MediaConvert
|
|
1049
1051
|
M2tsSettings.add_member(:fragment_time, Shapes::ShapeRef.new(shape: __double, location_name: "fragmentTime"))
|
1050
1052
|
M2tsSettings.add_member(:max_pcr_interval, Shapes::ShapeRef.new(shape: __integer, location_name: "maxPcrInterval"))
|
1051
1053
|
M2tsSettings.add_member(:min_ebp_interval, Shapes::ShapeRef.new(shape: __integer, location_name: "minEbpInterval"))
|
1054
|
+
M2tsSettings.add_member(:nielsen_id_3, Shapes::ShapeRef.new(shape: M2tsNielsenId3, location_name: "nielsenId3"))
|
1052
1055
|
M2tsSettings.add_member(:null_packet_bitrate, Shapes::ShapeRef.new(shape: __double, location_name: "nullPacketBitrate"))
|
1053
1056
|
M2tsSettings.add_member(:pat_interval, Shapes::ShapeRef.new(shape: __integer, location_name: "patInterval"))
|
1054
1057
|
M2tsSettings.add_member(:pcr_control, Shapes::ShapeRef.new(shape: M2tsPcrControl, location_name: "pcrControl"))
|
@@ -1063,12 +1066,14 @@ module Aws::MediaConvert
|
|
1063
1066
|
M2tsSettings.add_member(:segmentation_markers, Shapes::ShapeRef.new(shape: M2tsSegmentationMarkers, location_name: "segmentationMarkers"))
|
1064
1067
|
M2tsSettings.add_member(:segmentation_style, Shapes::ShapeRef.new(shape: M2tsSegmentationStyle, location_name: "segmentationStyle"))
|
1065
1068
|
M2tsSettings.add_member(:segmentation_time, Shapes::ShapeRef.new(shape: __double, location_name: "segmentationTime"))
|
1069
|
+
M2tsSettings.add_member(:timed_metadata_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "timedMetadataPid"))
|
1066
1070
|
M2tsSettings.add_member(:transport_stream_id, Shapes::ShapeRef.new(shape: __integer, location_name: "transportStreamId"))
|
1067
1071
|
M2tsSettings.add_member(:video_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "videoPid"))
|
1068
1072
|
M2tsSettings.struct_class = Types::M2tsSettings
|
1069
1073
|
|
1070
1074
|
M3u8Settings.add_member(:audio_frames_per_pes, Shapes::ShapeRef.new(shape: __integer, location_name: "audioFramesPerPes"))
|
1071
1075
|
M3u8Settings.add_member(:audio_pids, Shapes::ShapeRef.new(shape: ListOf__integer, location_name: "audioPids"))
|
1076
|
+
M3u8Settings.add_member(:nielsen_id_3, Shapes::ShapeRef.new(shape: M3u8NielsenId3, location_name: "nielsenId3"))
|
1072
1077
|
M3u8Settings.add_member(:pat_interval, Shapes::ShapeRef.new(shape: __integer, location_name: "patInterval"))
|
1073
1078
|
M3u8Settings.add_member(:pcr_control, Shapes::ShapeRef.new(shape: M3u8PcrControl, location_name: "pcrControl"))
|
1074
1079
|
M3u8Settings.add_member(:pcr_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "pcrPid"))
|
@@ -444,7 +444,7 @@ module Aws::MediaConvert
|
|
444
444
|
# }
|
445
445
|
#
|
446
446
|
# @!attribute [rw] audio_normalization_settings
|
447
|
-
#
|
447
|
+
# Advanced audio normalization settings.
|
448
448
|
# @return [Types::AudioNormalizationSettings]
|
449
449
|
#
|
450
450
|
# @!attribute [rw] audio_source_name
|
@@ -626,8 +626,7 @@ module Aws::MediaConvert
|
|
626
626
|
# @return [String]
|
627
627
|
#
|
628
628
|
# @!attribute [rw] external_audio_file_input
|
629
|
-
# Specifies audio data from an external file source.
|
630
|
-
# when Infer External Filename is checked
|
629
|
+
# Specifies audio data from an external file source.
|
631
630
|
# @return [String]
|
632
631
|
#
|
633
632
|
# @!attribute [rw] language_code
|
@@ -1439,6 +1438,7 @@ module Aws::MediaConvert
|
|
1439
1438
|
# fragment_time: 1.0,
|
1440
1439
|
# max_pcr_interval: 1,
|
1441
1440
|
# min_ebp_interval: 1,
|
1441
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1442
1442
|
# null_packet_bitrate: 1.0,
|
1443
1443
|
# pat_interval: 1,
|
1444
1444
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -1453,12 +1453,14 @@ module Aws::MediaConvert
|
|
1453
1453
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
1454
1454
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
1455
1455
|
# segmentation_time: 1.0,
|
1456
|
+
# timed_metadata_pid: 1,
|
1456
1457
|
# transport_stream_id: 1,
|
1457
1458
|
# video_pid: 1,
|
1458
1459
|
# },
|
1459
1460
|
# m3u_8_settings: {
|
1460
1461
|
# audio_frames_per_pes: 1,
|
1461
1462
|
# audio_pids: [1],
|
1463
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1462
1464
|
# pat_interval: 1,
|
1463
1465
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
1464
1466
|
# pcr_pid: 1,
|
@@ -1905,6 +1907,7 @@ module Aws::MediaConvert
|
|
1905
1907
|
# fragment_time: 1.0,
|
1906
1908
|
# max_pcr_interval: 1,
|
1907
1909
|
# min_ebp_interval: 1,
|
1910
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1908
1911
|
# null_packet_bitrate: 1.0,
|
1909
1912
|
# pat_interval: 1,
|
1910
1913
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -1919,12 +1922,14 @@ module Aws::MediaConvert
|
|
1919
1922
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
1920
1923
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
1921
1924
|
# segmentation_time: 1.0,
|
1925
|
+
# timed_metadata_pid: 1,
|
1922
1926
|
# transport_stream_id: 1,
|
1923
1927
|
# video_pid: 1,
|
1924
1928
|
# },
|
1925
1929
|
# m3u_8_settings: {
|
1926
1930
|
# audio_frames_per_pes: 1,
|
1927
1931
|
# audio_pids: [1],
|
1932
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
1928
1933
|
# pat_interval: 1,
|
1929
1934
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
1930
1935
|
# pcr_pid: 1,
|
@@ -2645,6 +2650,7 @@ module Aws::MediaConvert
|
|
2645
2650
|
# fragment_time: 1.0,
|
2646
2651
|
# max_pcr_interval: 1,
|
2647
2652
|
# min_ebp_interval: 1,
|
2653
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
2648
2654
|
# null_packet_bitrate: 1.0,
|
2649
2655
|
# pat_interval: 1,
|
2650
2656
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -2659,12 +2665,14 @@ module Aws::MediaConvert
|
|
2659
2665
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
2660
2666
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
2661
2667
|
# segmentation_time: 1.0,
|
2668
|
+
# timed_metadata_pid: 1,
|
2662
2669
|
# transport_stream_id: 1,
|
2663
2670
|
# video_pid: 1,
|
2664
2671
|
# },
|
2665
2672
|
# m3u_8_settings: {
|
2666
2673
|
# audio_frames_per_pes: 1,
|
2667
2674
|
# audio_pids: [1],
|
2675
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
2668
2676
|
# pat_interval: 1,
|
2669
2677
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
2670
2678
|
# pcr_pid: 1,
|
@@ -3180,6 +3188,7 @@ module Aws::MediaConvert
|
|
3180
3188
|
# fragment_time: 1.0,
|
3181
3189
|
# max_pcr_interval: 1,
|
3182
3190
|
# min_ebp_interval: 1,
|
3191
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
3183
3192
|
# null_packet_bitrate: 1.0,
|
3184
3193
|
# pat_interval: 1,
|
3185
3194
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -3194,12 +3203,14 @@ module Aws::MediaConvert
|
|
3194
3203
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
3195
3204
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
3196
3205
|
# segmentation_time: 1.0,
|
3206
|
+
# timed_metadata_pid: 1,
|
3197
3207
|
# transport_stream_id: 1,
|
3198
3208
|
# video_pid: 1,
|
3199
3209
|
# },
|
3200
3210
|
# m3u_8_settings: {
|
3201
3211
|
# audio_frames_per_pes: 1,
|
3202
3212
|
# audio_pids: [1],
|
3213
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
3203
3214
|
# pat_interval: 1,
|
3204
3215
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
3205
3216
|
# pcr_pid: 1,
|
@@ -4404,7 +4415,7 @@ module Aws::MediaConvert
|
|
4404
4415
|
# @!attribute [rw] source_file
|
4405
4416
|
# External caption file used for loading captions. Accepted file
|
4406
4417
|
# extensions are 'scc', 'ttml', 'dfxp', 'stl', 'srt', and
|
4407
|
-
# 'smi'.
|
4418
|
+
# 'smi'.
|
4408
4419
|
# @return [String]
|
4409
4420
|
#
|
4410
4421
|
# @!attribute [rw] time_delta
|
@@ -6772,6 +6783,7 @@ module Aws::MediaConvert
|
|
6772
6783
|
# fragment_time: 1.0,
|
6773
6784
|
# max_pcr_interval: 1,
|
6774
6785
|
# min_ebp_interval: 1,
|
6786
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
6775
6787
|
# null_packet_bitrate: 1.0,
|
6776
6788
|
# pat_interval: 1,
|
6777
6789
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -6786,12 +6798,14 @@ module Aws::MediaConvert
|
|
6786
6798
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
6787
6799
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
6788
6800
|
# segmentation_time: 1.0,
|
6801
|
+
# timed_metadata_pid: 1,
|
6789
6802
|
# transport_stream_id: 1,
|
6790
6803
|
# video_pid: 1,
|
6791
6804
|
# },
|
6792
6805
|
# m3u_8_settings: {
|
6793
6806
|
# audio_frames_per_pes: 1,
|
6794
6807
|
# audio_pids: [1],
|
6808
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
6795
6809
|
# pat_interval: 1,
|
6796
6810
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
6797
6811
|
# pcr_pid: 1,
|
@@ -7170,7 +7184,7 @@ module Aws::MediaConvert
|
|
7170
7184
|
#
|
7171
7185
|
# @!attribute [rw] type
|
7172
7186
|
# A job template can be of two types: system or custom. System or
|
7173
|
-
# built-in job templates can
|
7187
|
+
# built-in job templates can't be modified or deleted by the user.
|
7174
7188
|
# @return [String]
|
7175
7189
|
#
|
7176
7190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/JobTemplate AWS API Documentation
|
@@ -7561,6 +7575,7 @@ module Aws::MediaConvert
|
|
7561
7575
|
# fragment_time: 1.0,
|
7562
7576
|
# max_pcr_interval: 1,
|
7563
7577
|
# min_ebp_interval: 1,
|
7578
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
7564
7579
|
# null_packet_bitrate: 1.0,
|
7565
7580
|
# pat_interval: 1,
|
7566
7581
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -7575,12 +7590,14 @@ module Aws::MediaConvert
|
|
7575
7590
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
7576
7591
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
7577
7592
|
# segmentation_time: 1.0,
|
7593
|
+
# timed_metadata_pid: 1,
|
7578
7594
|
# transport_stream_id: 1,
|
7579
7595
|
# video_pid: 1,
|
7580
7596
|
# },
|
7581
7597
|
# m3u_8_settings: {
|
7582
7598
|
# audio_frames_per_pes: 1,
|
7583
7599
|
# audio_pids: [1],
|
7600
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
7584
7601
|
# pat_interval: 1,
|
7585
7602
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
7586
7603
|
# pcr_pid: 1,
|
@@ -8237,6 +8254,7 @@ module Aws::MediaConvert
|
|
8237
8254
|
# fragment_time: 1.0,
|
8238
8255
|
# max_pcr_interval: 1,
|
8239
8256
|
# min_ebp_interval: 1,
|
8257
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
8240
8258
|
# null_packet_bitrate: 1.0,
|
8241
8259
|
# pat_interval: 1,
|
8242
8260
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -8251,6 +8269,7 @@ module Aws::MediaConvert
|
|
8251
8269
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
8252
8270
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
8253
8271
|
# segmentation_time: 1.0,
|
8272
|
+
# timed_metadata_pid: 1,
|
8254
8273
|
# transport_stream_id: 1,
|
8255
8274
|
# video_pid: 1,
|
8256
8275
|
# }
|
@@ -8267,8 +8286,7 @@ module Aws::MediaConvert
|
|
8267
8286
|
# @!attribute [rw] audio_pids
|
8268
8287
|
# Packet Identifier (PID) of the elementary audio stream(s) in the
|
8269
8288
|
# transport stream. Multiple values are accepted, and can be entered
|
8270
|
-
# in ranges and/or by comma separation.
|
8271
|
-
# hexadecimal values.
|
8289
|
+
# in ranges and/or by comma separation.
|
8272
8290
|
# @return [Array<Integer>]
|
8273
8291
|
#
|
8274
8292
|
# @!attribute [rw] bitrate
|
@@ -8297,8 +8315,7 @@ module Aws::MediaConvert
|
|
8297
8315
|
# @!attribute [rw] dvb_sub_pids
|
8298
8316
|
# Packet Identifier (PID) for input source DVB Subtitle data to this
|
8299
8317
|
# output. Multiple values are accepted, and can be entered in ranges
|
8300
|
-
# and/or by comma separation.
|
8301
|
-
# values.
|
8318
|
+
# and/or by comma separation.
|
8302
8319
|
# @return [Array<Integer>]
|
8303
8320
|
#
|
8304
8321
|
# @!attribute [rw] dvb_tdt_settings
|
@@ -8308,7 +8325,7 @@ module Aws::MediaConvert
|
|
8308
8325
|
#
|
8309
8326
|
# @!attribute [rw] dvb_teletext_pid
|
8310
8327
|
# Packet Identifier (PID) for input source DVB Teletext data to this
|
8311
|
-
# output.
|
8328
|
+
# output.
|
8312
8329
|
# @return [Integer]
|
8313
8330
|
#
|
8314
8331
|
# @!attribute [rw] ebp_audio_interval
|
@@ -8350,6 +8367,12 @@ module Aws::MediaConvert
|
|
8350
8367
|
# to create sufficient latency to make the lookahead accurate.
|
8351
8368
|
# @return [Integer]
|
8352
8369
|
#
|
8370
|
+
# @!attribute [rw] nielsen_id_3
|
8371
|
+
# If INSERT, Nielsen inaudible tones for media tracking will be
|
8372
|
+
# detected in the input audio and an equivalent ID3 tag will be
|
8373
|
+
# inserted in the output.
|
8374
|
+
# @return [String]
|
8375
|
+
#
|
8353
8376
|
# @!attribute [rw] null_packet_bitrate
|
8354
8377
|
# Value in bits per second of extra null packets to insert into the
|
8355
8378
|
# transport stream. This can be used if a downstream encryption system
|
@@ -8371,8 +8394,7 @@ module Aws::MediaConvert
|
|
8371
8394
|
# @!attribute [rw] pcr_pid
|
8372
8395
|
# Packet Identifier (PID) of the Program Clock Reference (PCR) in the
|
8373
8396
|
# transport stream. When no value is given, the encoder will assign
|
8374
|
-
# the same value as the Video PID.
|
8375
|
-
# hexadecimal value.
|
8397
|
+
# the same value as the Video PID.
|
8376
8398
|
# @return [Integer]
|
8377
8399
|
#
|
8378
8400
|
# @!attribute [rw] pmt_interval
|
@@ -8382,12 +8404,12 @@ module Aws::MediaConvert
|
|
8382
8404
|
#
|
8383
8405
|
# @!attribute [rw] pmt_pid
|
8384
8406
|
# Packet Identifier (PID) for the Program Map Table (PMT) in the
|
8385
|
-
# transport stream.
|
8407
|
+
# transport stream.
|
8386
8408
|
# @return [Integer]
|
8387
8409
|
#
|
8388
8410
|
# @!attribute [rw] private_metadata_pid
|
8389
8411
|
# Packet Identifier (PID) of the private metadata stream in the
|
8390
|
-
# transport stream.
|
8412
|
+
# transport stream.
|
8391
8413
|
# @return [Integer]
|
8392
8414
|
#
|
8393
8415
|
# @!attribute [rw] program_number
|
@@ -8403,13 +8425,12 @@ module Aws::MediaConvert
|
|
8403
8425
|
#
|
8404
8426
|
# @!attribute [rw] scte_35_pid
|
8405
8427
|
# Packet Identifier (PID) of the SCTE-35 stream in the transport
|
8406
|
-
# stream.
|
8428
|
+
# stream.
|
8407
8429
|
# @return [Integer]
|
8408
8430
|
#
|
8409
8431
|
# @!attribute [rw] scte_35_source
|
8410
8432
|
# Enables SCTE-35 passthrough (scte35Source) to pass any SCTE-35
|
8411
|
-
# signals from input to output.
|
8412
|
-
# containers.
|
8433
|
+
# signals from input to output.
|
8413
8434
|
# @return [String]
|
8414
8435
|
#
|
8415
8436
|
# @!attribute [rw] segmentation_markers
|
@@ -8445,13 +8466,18 @@ module Aws::MediaConvert
|
|
8445
8466
|
# set to \_none\_.
|
8446
8467
|
# @return [Float]
|
8447
8468
|
#
|
8469
|
+
# @!attribute [rw] timed_metadata_pid
|
8470
|
+
# Packet Identifier (PID) of the timed metadata stream in the
|
8471
|
+
# transport stream.
|
8472
|
+
# @return [Integer]
|
8473
|
+
#
|
8448
8474
|
# @!attribute [rw] transport_stream_id
|
8449
8475
|
# The value of the transport stream ID field in the Program Map Table.
|
8450
8476
|
# @return [Integer]
|
8451
8477
|
#
|
8452
8478
|
# @!attribute [rw] video_pid
|
8453
8479
|
# Packet Identifier (PID) of the elementary video stream in the
|
8454
|
-
# transport stream.
|
8480
|
+
# transport stream.
|
8455
8481
|
# @return [Integer]
|
8456
8482
|
#
|
8457
8483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/M2tsSettings AWS API Documentation
|
@@ -8473,6 +8499,7 @@ module Aws::MediaConvert
|
|
8473
8499
|
:fragment_time,
|
8474
8500
|
:max_pcr_interval,
|
8475
8501
|
:min_ebp_interval,
|
8502
|
+
:nielsen_id_3,
|
8476
8503
|
:null_packet_bitrate,
|
8477
8504
|
:pat_interval,
|
8478
8505
|
:pcr_control,
|
@@ -8487,6 +8514,7 @@ module Aws::MediaConvert
|
|
8487
8514
|
:segmentation_markers,
|
8488
8515
|
:segmentation_style,
|
8489
8516
|
:segmentation_time,
|
8517
|
+
:timed_metadata_pid,
|
8490
8518
|
:transport_stream_id,
|
8491
8519
|
:video_pid)
|
8492
8520
|
include Aws::Structure
|
@@ -8500,6 +8528,7 @@ module Aws::MediaConvert
|
|
8500
8528
|
# {
|
8501
8529
|
# audio_frames_per_pes: 1,
|
8502
8530
|
# audio_pids: [1],
|
8531
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
8503
8532
|
# pat_interval: 1,
|
8504
8533
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
8505
8534
|
# pcr_pid: 1,
|
@@ -8522,10 +8551,15 @@ module Aws::MediaConvert
|
|
8522
8551
|
# @!attribute [rw] audio_pids
|
8523
8552
|
# Packet Identifier (PID) of the elementary audio stream(s) in the
|
8524
8553
|
# transport stream. Multiple values are accepted, and can be entered
|
8525
|
-
# in ranges and/or by comma separation.
|
8526
|
-
# hexadecimal values.
|
8554
|
+
# in ranges and/or by comma separation.
|
8527
8555
|
# @return [Array<Integer>]
|
8528
8556
|
#
|
8557
|
+
# @!attribute [rw] nielsen_id_3
|
8558
|
+
# If INSERT, Nielsen inaudible tones for media tracking will be
|
8559
|
+
# detected in the input audio and an equivalent ID3 tag will be
|
8560
|
+
# inserted in the output.
|
8561
|
+
# @return [String]
|
8562
|
+
#
|
8529
8563
|
# @!attribute [rw] pat_interval
|
8530
8564
|
# The number of milliseconds between instances of this table in the
|
8531
8565
|
# output transport stream.
|
@@ -8541,8 +8575,7 @@ module Aws::MediaConvert
|
|
8541
8575
|
# @!attribute [rw] pcr_pid
|
8542
8576
|
# Packet Identifier (PID) of the Program Clock Reference (PCR) in the
|
8543
8577
|
# transport stream. When no value is given, the encoder will assign
|
8544
|
-
# the same value as the Video PID.
|
8545
|
-
# hexadecimal value.
|
8578
|
+
# the same value as the Video PID.
|
8546
8579
|
# @return [Integer]
|
8547
8580
|
#
|
8548
8581
|
# @!attribute [rw] pmt_interval
|
@@ -8552,12 +8585,12 @@ module Aws::MediaConvert
|
|
8552
8585
|
#
|
8553
8586
|
# @!attribute [rw] pmt_pid
|
8554
8587
|
# Packet Identifier (PID) for the Program Map Table (PMT) in the
|
8555
|
-
# transport stream.
|
8588
|
+
# transport stream.
|
8556
8589
|
# @return [Integer]
|
8557
8590
|
#
|
8558
8591
|
# @!attribute [rw] private_metadata_pid
|
8559
8592
|
# Packet Identifier (PID) of the private metadata stream in the
|
8560
|
-
# transport stream.
|
8593
|
+
# transport stream.
|
8561
8594
|
# @return [Integer]
|
8562
8595
|
#
|
8563
8596
|
# @!attribute [rw] program_number
|
@@ -8566,24 +8599,22 @@ module Aws::MediaConvert
|
|
8566
8599
|
#
|
8567
8600
|
# @!attribute [rw] scte_35_pid
|
8568
8601
|
# Packet Identifier (PID) of the SCTE-35 stream in the transport
|
8569
|
-
# stream.
|
8602
|
+
# stream.
|
8570
8603
|
# @return [Integer]
|
8571
8604
|
#
|
8572
8605
|
# @!attribute [rw] scte_35_source
|
8573
8606
|
# Enables SCTE-35 passthrough (scte35Source) to pass any SCTE-35
|
8574
|
-
# signals from input to output.
|
8575
|
-
# containers.
|
8607
|
+
# signals from input to output.
|
8576
8608
|
# @return [String]
|
8577
8609
|
#
|
8578
8610
|
# @!attribute [rw] timed_metadata
|
8579
8611
|
# If PASSTHROUGH, inserts ID3 timed metadata from the timed\_metadata
|
8580
|
-
# REST command into this output.
|
8581
|
-
# containers.
|
8612
|
+
# REST command into this output.
|
8582
8613
|
# @return [String]
|
8583
8614
|
#
|
8584
8615
|
# @!attribute [rw] timed_metadata_pid
|
8585
8616
|
# Packet Identifier (PID) of the timed metadata stream in the
|
8586
|
-
# transport stream.
|
8617
|
+
# transport stream.
|
8587
8618
|
# @return [Integer]
|
8588
8619
|
#
|
8589
8620
|
# @!attribute [rw] transport_stream_id
|
@@ -8592,7 +8623,7 @@ module Aws::MediaConvert
|
|
8592
8623
|
#
|
8593
8624
|
# @!attribute [rw] video_pid
|
8594
8625
|
# Packet Identifier (PID) of the elementary video stream in the
|
8595
|
-
# transport stream.
|
8626
|
+
# transport stream.
|
8596
8627
|
# @return [Integer]
|
8597
8628
|
#
|
8598
8629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/M3u8Settings AWS API Documentation
|
@@ -8600,6 +8631,7 @@ module Aws::MediaConvert
|
|
8600
8631
|
class M3u8Settings < Struct.new(
|
8601
8632
|
:audio_frames_per_pes,
|
8602
8633
|
:audio_pids,
|
8634
|
+
:nielsen_id_3,
|
8603
8635
|
:pat_interval,
|
8604
8636
|
:pcr_control,
|
8605
8637
|
:pcr_pid,
|
@@ -9407,6 +9439,7 @@ module Aws::MediaConvert
|
|
9407
9439
|
# fragment_time: 1.0,
|
9408
9440
|
# max_pcr_interval: 1,
|
9409
9441
|
# min_ebp_interval: 1,
|
9442
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
9410
9443
|
# null_packet_bitrate: 1.0,
|
9411
9444
|
# pat_interval: 1,
|
9412
9445
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -9421,12 +9454,14 @@ module Aws::MediaConvert
|
|
9421
9454
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
9422
9455
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
9423
9456
|
# segmentation_time: 1.0,
|
9457
|
+
# timed_metadata_pid: 1,
|
9424
9458
|
# transport_stream_id: 1,
|
9425
9459
|
# video_pid: 1,
|
9426
9460
|
# },
|
9427
9461
|
# m3u_8_settings: {
|
9428
9462
|
# audio_frames_per_pes: 1,
|
9429
9463
|
# audio_pids: [1],
|
9464
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
9430
9465
|
# pat_interval: 1,
|
9431
9466
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
9432
9467
|
# pcr_pid: 1,
|
@@ -9717,10 +9752,11 @@ module Aws::MediaConvert
|
|
9717
9752
|
# Use Name modifier (NameModifier) to have the service add a string to
|
9718
9753
|
# the end of each output filename. You specify the base filename as
|
9719
9754
|
# part of your destination URI. When you create multiple outputs in
|
9720
|
-
# the same output group, Name modifier is required.
|
9721
|
-
# accepts format identifiers. For DASH ISO outputs,
|
9722
|
-
# format identifiers $Number$ or $Time$ in one output,
|
9723
|
-
# them in the same way in all outputs of the output
|
9755
|
+
# the same output group, Name modifier (NameModifier) is required.
|
9756
|
+
# Name modifier also accepts format identifiers. For DASH ISO outputs,
|
9757
|
+
# if you use the format identifiers $Number$ or $Time$ in one output,
|
9758
|
+
# you must use them in the same way in all outputs of the output
|
9759
|
+
# group.
|
9724
9760
|
# @return [String]
|
9725
9761
|
#
|
9726
9762
|
# @!attribute [rw] output_settings
|
@@ -10063,6 +10099,7 @@ module Aws::MediaConvert
|
|
10063
10099
|
# fragment_time: 1.0,
|
10064
10100
|
# max_pcr_interval: 1,
|
10065
10101
|
# min_ebp_interval: 1,
|
10102
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
10066
10103
|
# null_packet_bitrate: 1.0,
|
10067
10104
|
# pat_interval: 1,
|
10068
10105
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -10077,12 +10114,14 @@ module Aws::MediaConvert
|
|
10077
10114
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
10078
10115
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
10079
10116
|
# segmentation_time: 1.0,
|
10117
|
+
# timed_metadata_pid: 1,
|
10080
10118
|
# transport_stream_id: 1,
|
10081
10119
|
# video_pid: 1,
|
10082
10120
|
# },
|
10083
10121
|
# m3u_8_settings: {
|
10084
10122
|
# audio_frames_per_pes: 1,
|
10085
10123
|
# audio_pids: [1],
|
10124
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
10086
10125
|
# pat_interval: 1,
|
10087
10126
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
10088
10127
|
# pcr_pid: 1,
|
@@ -10573,7 +10612,7 @@ module Aws::MediaConvert
|
|
10573
10612
|
#
|
10574
10613
|
# @!attribute [rw] type
|
10575
10614
|
# A preset can be of two types: system or custom. System or built-in
|
10576
|
-
# preset can
|
10615
|
+
# preset can't be modified or deleted by the user.
|
10577
10616
|
# @return [String]
|
10578
10617
|
#
|
10579
10618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Preset AWS API Documentation
|
@@ -10774,6 +10813,7 @@ module Aws::MediaConvert
|
|
10774
10813
|
# fragment_time: 1.0,
|
10775
10814
|
# max_pcr_interval: 1,
|
10776
10815
|
# min_ebp_interval: 1,
|
10816
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
10777
10817
|
# null_packet_bitrate: 1.0,
|
10778
10818
|
# pat_interval: 1,
|
10779
10819
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -10788,12 +10828,14 @@ module Aws::MediaConvert
|
|
10788
10828
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
10789
10829
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
10790
10830
|
# segmentation_time: 1.0,
|
10831
|
+
# timed_metadata_pid: 1,
|
10791
10832
|
# transport_stream_id: 1,
|
10792
10833
|
# video_pid: 1,
|
10793
10834
|
# },
|
10794
10835
|
# m3u_8_settings: {
|
10795
10836
|
# audio_frames_per_pes: 1,
|
10796
10837
|
# audio_pids: [1],
|
10838
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
10797
10839
|
# pat_interval: 1,
|
10798
10840
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
10799
10841
|
# pcr_pid: 1,
|
@@ -11218,7 +11260,7 @@ module Aws::MediaConvert
|
|
11218
11260
|
#
|
11219
11261
|
# @!attribute [rw] type
|
11220
11262
|
# A queue can be of two types: system or custom. System or built-in
|
11221
|
-
# queues can
|
11263
|
+
# queues can't be modified or deleted by the user.
|
11222
11264
|
# @return [String]
|
11223
11265
|
#
|
11224
11266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Queue AWS API Documentation
|
@@ -11638,7 +11680,8 @@ module Aws::MediaConvert
|
|
11638
11680
|
include Aws::Structure
|
11639
11681
|
end
|
11640
11682
|
|
11641
|
-
# Settings
|
11683
|
+
# Settings specific to TTML caption outputs, including Pass style
|
11684
|
+
# information (TtmlStylePassthrough).
|
11642
11685
|
#
|
11643
11686
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
11644
11687
|
# data as a hash:
|
@@ -12038,6 +12081,7 @@ module Aws::MediaConvert
|
|
12038
12081
|
# fragment_time: 1.0,
|
12039
12082
|
# max_pcr_interval: 1,
|
12040
12083
|
# min_ebp_interval: 1,
|
12084
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
12041
12085
|
# null_packet_bitrate: 1.0,
|
12042
12086
|
# pat_interval: 1,
|
12043
12087
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -12052,12 +12096,14 @@ module Aws::MediaConvert
|
|
12052
12096
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
12053
12097
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
12054
12098
|
# segmentation_time: 1.0,
|
12099
|
+
# timed_metadata_pid: 1,
|
12055
12100
|
# transport_stream_id: 1,
|
12056
12101
|
# video_pid: 1,
|
12057
12102
|
# },
|
12058
12103
|
# m3u_8_settings: {
|
12059
12104
|
# audio_frames_per_pes: 1,
|
12060
12105
|
# audio_pids: [1],
|
12106
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
12061
12107
|
# pat_interval: 1,
|
12062
12108
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
12063
12109
|
# pcr_pid: 1,
|
@@ -12573,6 +12619,7 @@ module Aws::MediaConvert
|
|
12573
12619
|
# fragment_time: 1.0,
|
12574
12620
|
# max_pcr_interval: 1,
|
12575
12621
|
# min_ebp_interval: 1,
|
12622
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
12576
12623
|
# null_packet_bitrate: 1.0,
|
12577
12624
|
# pat_interval: 1,
|
12578
12625
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
@@ -12587,12 +12634,14 @@ module Aws::MediaConvert
|
|
12587
12634
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
12588
12635
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
12589
12636
|
# segmentation_time: 1.0,
|
12637
|
+
# timed_metadata_pid: 1,
|
12590
12638
|
# transport_stream_id: 1,
|
12591
12639
|
# video_pid: 1,
|
12592
12640
|
# },
|
12593
12641
|
# m3u_8_settings: {
|
12594
12642
|
# audio_frames_per_pes: 1,
|
12595
12643
|
# audio_pids: [1],
|
12644
|
+
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
12596
12645
|
# pat_interval: 1,
|
12597
12646
|
# pcr_control: "PCR_EVERY_PES_PACKET", # accepts PCR_EVERY_PES_PACKET, CONFIGURED_PCR_PERIOD
|
12598
12647
|
# pcr_pid: 1,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconvert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|