Created
February 6, 2022 23:01
-
-
Save gaboluque/63a39571751a9ef7826ed40ed023cbd1 to your computer and use it in GitHub Desktop.
AWS Media Convert simple config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Queue":"<insert_queue_arn_here>", | |
"UserMetadata":{}, | |
"Role":"<insert_iam_role_here>", | |
"Settings":{ | |
"TimecodeConfig":{ | |
"Source":"ZEROBASED" | |
}, | |
"OutputGroups":[ | |
{ | |
"CustomName":"test hls group", | |
"Name":"Apple HLS", | |
"Outputs":[ | |
{ | |
"Preset":"System-Avc_16x9_720p_29_97fps_3500kbps", | |
"NameModifier":"test/720p" | |
}, | |
{ | |
"Preset":"System-Avc_16x9_1080p_29_97fps_8500kbps", | |
"NameModifier":"test/1080p" | |
} | |
], | |
"OutputGroupSettings":{ | |
"Type":"HLS_GROUP_SETTINGS", | |
"HlsGroupSettings":{ | |
"SegmentLength":10, | |
"Destination":"<insert_s3_output_bucket_name>", | |
"MinSegmentLength":0 | |
} | |
} | |
} | |
], | |
"Inputs":[ | |
{ | |
"AudioSelectors":{ | |
"Audio Selector 1":{ | |
"DefaultSelection":"DEFAULT" | |
} | |
}, | |
"VideoSelector":{ | |
}, | |
"TimecodeSource":"ZEROBASED", | |
"FileInput":"<insert_input_video_location_here>" | |
} | |
] | |
}, | |
"AccelerationSettings":{ | |
"Mode":"DISABLED" | |
}, | |
"StatusUpdateInterval":"SECONDS_60", | |
"Priority":0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment