Telecine
Name | Type | Description |
---|---|---|
interlace_mode | enum tff bff | The interlacing mode. tff: top field first. bff: bottom field first. default: tff |
pattern | enum 22 23 2332 222222222223 | Specify the desired cadence pattern, 2332 is the default. 22 is a special case, causing interlacing without a frame rate change. default: 2332 |
Example telecine
{
"uid": "transcode_media",
"kind": "transcode",
"payload": {
"location": {
},
"targets": [
{
"file_pattern": "{source_basename}_converted.mp4",
"container": {
"kind": "mp4"
},
"video": {
"codec": "h264",
"filters": [
{
"kind": "telecine",
"payload": {
"interlace_mode": "tff",
"pattern": "23"
}
}
]
},
"audio": [
{
}
]
}
]
}
}