Kariudo wrote:you can try making your clips in vdubmod...but I don't know how frame accurate it will be since you're using a .mkv file
I've done that with my Love Hina
.mkv footage for my latest vid. All you need is just a simple
DirectShowSource() AviSynth script,set fps parameters,and rest cleaning up is up to editor to decide.
This is a script I used for my Love Hina :
Code: Select all
DirectShowSource("L:\Anime Footage\Love Hina *.mkv", fps=23.976)
ConvertToYV12()
KillAudio()
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, pp=2, clip2=deint)
TDecimate()
Deen("w3d",2,3,5)
FluxSmoothST(8,7)
BlindPP(cpu=4, quant=8)
vmToon(strength=24, xstren=128)
aWarpSharp(depth=8)
Where '*' there shoud be episode number (01,02,03,etc.). Rest filters are just for basic cleaning up.
In other words - just DirectShowSource you footage,and use VDubMod to create clips-just as Kariudo suggested.