I am looking for some suggestions to a problem I am having with trying to convert a 60i video (not film) NTSC source to 50p PAL. The source was downscaled from 1080i NTSC to a DVD with letterboxing embedded on the image to preserve the 16:9 image in a 4:3 PAR. I would like to use AVISynth for this conversion. So far, I have come up with the following:
The result from this is pretty decent, but I was curious if anyone had any other recommendations or better scripts? Thanks for any help that can be provided.Code:video=dgdecode_mpeg2source("source.d2v",info=3) audio=DirectShowSource("source.ac3") AudioDub(video,audio) Amplify(2) ConvertToYUY2(interlaced=true) AssumeTFF Crop(6, 60, -10, -60) SeparateFields() ConvertFPS(50) LanczosResize(704, 400, taps=4)
+ Reply to Thread
Results 1 to 8 of 8
-
-
Use a smart bob like Yadif() or TempGaussMC_beta1() rather than SeparateFields(). Start with the original 1920x1080 source and bob before cropping or resizing.
-
Thanks, but unfortunately I don't have the original 1080i source. All I have is the 4:3 MPEG-2 that has the 16:9 image scaled to 720x480 with letterboxing applied to fill out the image.
-
Originally Posted by jagabo
Code:LoadCplugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll") video=dgdecode_mpeg2source("source.d2v",info=3) audio=DirectShowSource("source.ac3") AudioDub(video,audio) Amplify(2) ConvertToYUY2(interlaced=true) Crop(6, 68, -10, -60) Yadif(mode=1, order=1) ConvertFPS(50) LanczosResize(704, 400, taps=4)
-
Yeah, anime often has a mix of frame rates. You might consider encoding at 60 fps progressive after Yadif().
-
And you should probably use ChangeFPS(50), rather than ConvertFPS(50).
The result is much sharper
ConvertToYUY2(interlaced=true) -
Originally Posted by jagabo
-
Originally Posted by manono
If you value sharpness, don't use ConvertFPS. And do you need this early in the script for some reason:
ConvertToYUY2(interlaced=true)
If 704x400 and 50p, it's not for DVD, right?
Thanks again for everyone's comments though.
Similar Threads
-
HD Video File ( 1080 50P ) from Panasonics TM700
By wisitch in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 11Last Post: 22nd Aug 2011, 08:45 -
Quick, stupid question about 60p -> 60i in Avisynth
By Asterra in forum Video ConversionReplies: 3Last Post: 12th Jul 2011, 19:25 -
NTSC video with a film-like/PAL to NTSC conversion type of look that shouldn't
By Bix in forum RestorationReplies: 34Last Post: 8th Feb 2010, 15:17 -
PAL Video Cassette Recorder or [Multisystem VCR] for PAL->NTSC playback
By quantass in forum Newbie / General discussionsReplies: 10Last Post: 12th Dec 2008, 13:47 -
PAL VCD -> NTSC Video for NTSC DVD Authoring!!
By Mickey79 in forum Video ConversionReplies: 5Last Post: 12th Aug 2008, 11:30