Hi Im getting tough time getting the deinterlacing right.
Im ripping Futurama DVD
Code:
Video
ID                                       : 1
ID in the original source medium         : 224 (0xE0)
Format                                   : MPEG Video
Format version                           : Version 2
Format profile                           : Main@Main
Format settings                          : CustomMatrix / BVOP
Format settings, BVOP                    : Yes
Format settings, Matrix                  : Custom
Format settings, GOP                     : M=3, N=15
Format settings, picture structure       : Frame
Codec ID                                 : V_MPEG2
Codec ID/Info                            : MPEG 1 or 2 Video
Duration                                 : 21 min 34 s
Bit rate mode                            : Variable
Bit rate                                 : 5 462 kb/s
Maximum bit rate                         : 8 000 kb/s
Width                                    : 720 pixels
Height                                   : 576 pixels
Display aspect ratio                     : 4:3
Frame rate mode                          : Constant
Frame rate                               : 25.000 FPS
Standard                                 : PAL
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Interlaced
Scan order                               : Top Field First
Compression mode                         : Lossy
Bits/(Pixel*Frame)                       : 0.527
Time code of first frame                 : 00:59:58:00
Time code source                         : Group of pictures header
GOP, Open/Closed                         : Open
GOP, Open/Closed of first frame          : Closed
Stream size                              : 843 MiB (89%)
Language                                 : English
Default                                  : No
Forced                                   : No
Original source medium                   : DVD-Video
I used MakeMKV to save episodes as MKV and now Im using Megui as Im used to it from past. The problem is I cant reach the right result with deinterlacing. I read tons of forums, saw hours of video tutorials, spent days by testing, but still the results arent good enough.

My first shot was using Yadif, but I got messy spotty lines https://postimg.cc/Y4fWgCYL
Code:
FFMPEGSource2("D1_t00.mkv")
LoadPlugin("C:\Users\Milan\Videos\edit\MeGUI-2913-64\tools\avisynth_plugin\yadifmod2.dll")
Yadifmod2(mode=1, order=1)
Prefetch(10)
crop(8, 2, -6, -2)
#BilinearResize(704,520)
LanczosResize(704,520) # Lanczos (Sharp)
SelectEven()
Then I used Tdeint. It helped with messy lines, but jagged lines occurred. https://postimg.cc/t7rF2Jfh
Code:
FFMPEGSource2("D1_t00.mkv")
TDeint(order=1,mode=1)
Prefetch(10)
crop(8, 2, -6, -2)
LanczosResize(704,520) # Lanczos (Sharp)
SelectEven()
Then I tried QTGMC. It helped with lines, but ghost artefacts occurred. https://postimg.cc/B8HnP7Wh
Code:
FFMPEGSource2("D1_t00.mkv")
AssumeTFF()
QTGMC(preset="Slower",EdiThreads=3)
Prefetch(10)
crop(8, 2, -6, -2)
LanczosResize(704,520) # Lanczos (Sharp)
SelectEven()
Then I tried nnedi3 and got another artefacts https://postimg.cc/tYNdWDb4
Code:
FFMPEGSource2("D1_t00.mkv")
Trim(27024,-100) + Trim(23344,25944)
crop(8, 2, -6, -2)
BlackmanResize(704, 520, taps=10)
nnedi3(field=1, dh=false, Y=true, U=true, V=true, nsize=6, nns=4, qual=1, etype=0, pscrn=4, threads=6, opt=0, fapprox=0)
Prefetch(10)

I tried different parameter setting for each deinterlace filters, different order in avisynth, different resizers. Too many combinations, too many tests and spent hours, but cant get rid of those. Any ideas?