Hello i have a interlaced NTSC dvd that i have inverse telecined and used QTGMC to remove the interlacing. Now i want to resize / upscale this video to 576p which resizer would you recommend. I tried resizing with Spline36, I am not too experienced with this
+ Reply to Thread
Results 1 to 6 of 6
-
-
Are you trying to create a PAL DVD?
See this thread:
https://forum.videohelp.com/threads/353535-How-to-upscale-with-Nnedi3 -
You should IVTC and/or de-interlace and upscale in a single script. Is that what you're referring to or have you already re-encoded once? There's also the difference between PAL and NTSC frame rates, assuming you're wanting to upscale and produce a PAL DVD (given you mentioned 576p).
There might also be other filters you could apply at the same time to improve the quality, if need be. It'd be a good idea to upload a small sample of the original DVD video for the best advice. You can use DGIndex to extract a section of the video from a vob file. Or you can do the same by opening a vob file with TSMuxer and using it's split function to save a small section of video as a TS file. You only need to upload a video sample, It doesn't matter if it includes audio. It probably wouldn't hurt to also post the script you used to IVTC and de-interlace to make sure you're doing the correct thing for your source.Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview) -
That makes no sense. When asking for help, you should always both post your script and provide a sample.
Yes, if anime it shouldn't be bobbed. As hello_hello suggests, use DGIndex to cut a small section - 10 seconds or so with steady movement. Maybe it's field-blended, requiring special treatment. -
src = lvf.src(r"L:\Encodes\title00.mkv")
src = core.std.SetFieldBased(src, 2) # 1=BFF, 2=TFF
src = haf.QTGMC(src, TFF=True, Preset='Slow', InputType=0, SourceMatch=3, Sharpness=0.2,FPSDivisor=2)
src = core.vivtc.VFM(src,order=1, cthresh=10)
src = core.vivtc.VDecimate(src)
crop =core.std.Crop(src,4,4,0,0)
res = crop.resize.Spline36(1024,576)
depth = fvf.Depth(res ,16)
noise = haf.SMDegrain(depth,tr=2,thSAD=150,prefilter=1 , plane=0)
aa = taa.TAAmbk(noise, aatype='Nnedi3')
halo = haf.FineDehalo(aa, darkstr=0)
deband = core.f3kdb.Deband(halo,range=16, y=64, cb=20, cr=20, grainy=42, grainc=8, output_depth=16)
final = fvf.Depth(deband ,10)
final.set_output()
here is my basic script. will try to upload sample later
Similar Threads
-
How much is recommended maximum amount of data to be burnt on DVD?
By Bencuri in forum Authoring (DVD)Replies: 17Last Post: 20th Jan 2019, 11:03 -
PAL DVD 576i to MP4 576p 25 fps
By barmah in forum DVD RippingReplies: 3Last Post: 22nd Oct 2018, 22:35 -
Consultation, Getting best Rip from anime source DVD
By zanzar in forum Newbie / General discussionsReplies: 21Last Post: 16th Aug 2016, 15:21 -
Software to upconvert MKV from 576p to 1080p?
By tangledwiring in forum Video ConversionReplies: 3Last Post: 23rd Jun 2016, 02:34 -
Recommended VirtualDub (Or Avisynth?) Plugin(s)-Filter(s) To Remove Grain
By LouieChuckyMerry in forum RestorationReplies: 14Last Post: 6th Oct 2015, 23:21