Log in

View Full Version : Hybrid DVD approaches


raziel666
4th April 2007, 09:07
I've been experimenting with a hybrid DVD the last few days (DGIndex reports 82.66% FILM) and after a research in doom9, I ended up trying 3 different approaches (the first two coming from the Avisynth VFR page):
1) Decomb521VFR plugin
2) TDecimate plugin
3) A script I found in doom9 for a 2-pass vfr approach. The script is

1st pass:

assumetff()
interp = separatefields().SelectEven().eedi2(field=-1,pp=3)
deint = tdeint(mode=0,Order=1,type=1,AP=55,edeint=interp,slow=2)
tfm(d2v=d2vpath,clip2=deint,output="ep1-tfm.txt")
tdecimate(mode=4,denoise=true,output="ep1-tdec.txt")

2nd pass:

interp = separatefields().SelectEven().eedi2(field=-1,pp=3)
deint = tdeint(mode=0,Order=1,type=1,AP=55,edeint=interp,slow=2)
tfm(input="ep1-tfm.txt",d2v=d2vpath,clip2=deint)
tdecimate(mode=5,hybrid=2,denoise=true,input="ep1-tdec.txt",tfmIn="ep1-tfm.txt",mkvOut="ep1-timecodes.txt")

In every one of the 3 approaches above, I end up with a video and a timecode file which I mux in a mkv file. I try to playback, but the same problem appears in all three of them: some frames speed up while they really don't need to. Do you have any suggestions?