Deinterlace
Name | Type | Description |
---|---|---|
interlace_mode | enum tff bff auto frame_metadata | The source interlacing mode - auto means auto-detect. default: auto |
deinterlace_mode | enum 0 1 2 3 | This setting controls Deinterlacing Method to be used. 0 — Temporal & Spatial Check: This setting maintains the number of frames, so interlaced video with 25fps converts to progressive video with 25fps. Note that motion might not look as fluid when using deinterlacing that maintains the framerate. 1 — Bob, Temporal & Spatial Check: This setting doubles the number of frames, so interlaced video with 25fps converts to progressive video with 50fps. Use this mode if you want to double the framerate of your video. 2 — Skip Spatial Temporal Check: This mode saves encoding time at the cost of visual quality. 3 — Bob, Skip Spatial Temporal Check: This mode saves encoding time at the cost of visual quality. default: 3 |
maintain_source_frame_rate | boolean | This setting controls Deinterlacing Method to be used.(Context-sensitive) |
motion_compensation | boolean | Use a motion-compensated deinterlacer. Quality is better but CPU use will be significantly higher. |
motion_compensation_quality | enum low medium high veryhigh | Quality settings for the motion-compensated deinterlacer. |
Example deinterlace
{
"uid": "transcode_task",
"kind": "transcode",
"payload": {
"location": {
},
"targets": [
{
"file_pattern": "{source_basename}_converted.mp4",
"container": {
"kind": "mp4"
},
"video": {
"kind": "deinterlace",
"payload": {
"interlace_mode": "auto",
"motion_compensation": true,
"motion_compensation_quality": "high"
}
},
"audio": [
]
}
]
}
}