I'm trying to use AWS MediaConvert on a .mov
file that has an alpha channel. I couldn't find a way to preserve the alpha channel. Seems like it's always discarded and I'm losing the transparency.
Even the input QuickTime settings have only two options - Discard
and Remap to Luma
which turns anything BUT the alpha channel to white (?!).
Any help would be appreciated to preserve the alpha channel.
Thank you
{
"Queue": "arn:aws:mediaconvert:us-east-1:xxx:queues/Default",
"UserMetadata": {},
"Role": "arn:aws:iam::xxx:role/service-role/MediaConvert_Default_Role",
"Settings": {
"TimecodeConfig": {
"Source": "ZEROBASED"
},
"OutputGroups": [
{
"CustomName": "test vp9",
"Name": "DASH ISO",
"Outputs": [
{
"ContainerSettings": {
"Container": "MPD"
},
"VideoDescription": {
"CodecSettings": {
"Codec": "VP9",
"Vp9Settings": {
"RateControlMode": "VBR",
"Bitrate": 1000000
}
}
},
"NameModifier": "_output1"
}
],
"OutputGroupSettings": {
"Type": "DASH_ISO_GROUP_SETTINGS",
"DashIsoGroupSettings": {
"SegmentLength": 30,
"Destination": "s3://xxx/",
"FragmentLength": 2
}
}
}
],
"Inputs": [
{
"VideoSelector": {
"AlphaBehavior": "DISCARD"
},
"TimecodeSource": "ZEROBASED",
"FileInput": "https://xxx/yyy.mov"
}
]
},
"AccelerationSettings": {
"Mode": "DISABLED"
},
"StatusUpdateInterval": "SECONDS_60",
"Priority": 0
}