Mov_atoms
Name | Type | Description |
---|---|---|
copy | array | Array of atoms to be copied. |
pasp | string | Override the PASP atom in the form x:y. |
gama | number string | Override the GAMA atom as a float value |
fiel | string | Override the FIEL atom with a pre-defined quicktime API integer value in hex notation (https://developer.apple.com/library/content/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html#//apple_ref/doc/uid/TP40000939-CH205-124374) |
tapt | object | Override the TAPT atom with individual settings. |
clap | string | Override the CLAP atom in the form x❌x❌x❌x:x (8 entries). |
use_clap | boolean | Set this to false to prevent writing the CLAP atom. default: true |
media_uuid | string | Provide UUID in the form '324D8401-7083-4F5F-A0B1-D768CED82E43' |
encoder | string | Provide STSD encoder string. |
Example mov_atoms
{
"uid": "transcode_media",
"kind": "transcode",
"payload": {
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder"
},
"targets": [
{
"file_pattern": "{source_basename}_converted.mov",
"existing_files": "replace",
"container": {
"kind": "mov"
},
"video": {
"codec": "h264",
"width": 1920,
"height": 1080,
"bitrate_kb": 6000,
"max_bitrate_kb": 8000,
"bitrate_mode": "vbr",
"mov_atoms": {
"tapt": {
"clef": "1920:1080",
"prof": "1920:1080",
"enof": "1920:1080"
}
}
},
"audio": [
{
"codec": "heaac_v2",
"channels": 2,
"sample_rate": 48000
}
]
}
]
}
}