Skip to main content

Mov_atoms

NameTypeDescription
copyarrayArray of atoms to be copied.
paspstringOverride the PASP atom in the form x:y.
gamanumber
string
Override the GAMA atom as a float value
fielstringOverride 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)
taptobjectOverride the TAPT atom with individual settings.
clapstringOverride the CLAP atom in the form xxxx:x (8 entries).
use_clapbooleanSet this to false to prevent writing the CLAP atom.
default: true
media_uuidstringProvide UUID in the form '324D8401-7083-4F5F-A0B1-D768CED82E43'
encoderstringProvide 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
}
]
}
]
}
}