I'm trying to deinterlace a video (see the sample) but it seems it was weirdly interlaced in the first place because it produces ghosting. Does anyone know how to get the best progressive output with the least ghosting as possible? Maybe it's a separatefields() trick?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Could you clarify a few details:
1. Can you share the current FFmpeg command you're using for deinterlacing?
2. Are you seeing horizontal or vertical ghosting?
for deinterlacing with minimal ghosting, FFmpeg offers several methods:
Deinterlacing Techniques
| Method | FFmpeg Filter | Best Used For | Ghosting Potential |
|--------|---------------|---------------|-------------------|
| Yadif (Yet Another Deinterlacer) | yadif | Most common scenarios | Low |
| Bwdif (Bob Weaver Deinterlacer) | bwdif | Higher quality, more processing | Very Low |
| Blend Deinterlacing | blend | Slow motion content | Moderate |
The key parameters I recommend experimenting with are:Code:ffmpeg -i input.video -vf yadif=mode=send_field:parity=auto -c:a copy output.mp4
- `mode`:
- `send_field`: Sends both fields
- `send_frame`: Sends one frame
- `parity`:
- `auto`: Automatically detects field order
- `tff`: Top field first
- `bff`: Bottom field firstThere is nothing wrong .. with my environment -
You can try qtgmc with srestore, for example
Code:lwlibavvideosource("c:\users\davex\downloads\sample.mkv") qtgmc(preset="medium") srestore()
Similar Threads
-
DVD Deinterlacing in Avisynth+
By jeby1980 in forum DVD RippingReplies: 12Last Post: 14th Feb 2025, 16:07 -
Deinterlacing Source in Avisynth
By bit.whisperer in forum Video ConversionReplies: 16Last Post: 25th Jan 2024, 20:34 -
Why does deinterlacing my u-matic 1 hour video take so long? Vdub2+Avisynth
By rcoltrane in forum Newbie / General discussionsReplies: 7Last Post: 25th Jul 2023, 16:13 -
Old video deinterlacing problem
By rcoltrane in forum Newbie / General discussionsReplies: 20Last Post: 10th Feb 2022, 09:03 -
AviSynth Script for Only Deinterlacing Combed Lines (MeGUI)
By AOmundson in forum Video ConversionReplies: 9Last Post: 15th Mar 2021, 15:04


Quote
