Skip to content

Instantly share code, notes, and snippets.

@gaboluque
Created February 6, 2022 23:01
Show Gist options
  • Save gaboluque/63a39571751a9ef7826ed40ed023cbd1 to your computer and use it in GitHub Desktop.
Save gaboluque/63a39571751a9ef7826ed40ed023cbd1 to your computer and use it in GitHub Desktop.
AWS Media Convert simple config
{
"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