I think I have come up with a nice workflow for PAL to NTSC via AVISynth and HCEnc:
This comes from various sources, including videohelp. The question I have is this. Since smoothdeinterlace is utilized, what interlacing settings should be used in HCenc for encoding? Should I just tell it BFF? Not sure since source is deinterlaced via AVIsynth.LoadPlugin("dgdecode.dll")
LoadPlugin("SmoothDeinterlacer.dll")
LoadPlugin("Convolution3D.dll")
LoadPlugin("Convolution3DYV12.dll")
LoadPlugin("MSharpen.dll")
MPEG2Source("C:\TMP\Christmas78.d2v")
crop(4,4,-4,-4)
SeparateFields()
odd=SelectOdd.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
SmoothDeinterlace(doublerate=true)
AddBorders(4,4,4,4)
LanczosResize(720,480)
ChangeFPS(59.94) # or ConvertFPS(59.94)
SeparateFields()
SelectEvery(4,1,2)
Weave()
MSharpen(9,100,highq=true,mask=false)
ConvertToYV12(interlaced=true)
thanks
+ Reply to Thread
Results 1 to 2 of 2
-
'Do I look absolutely divine and regal, and yet at the same time very pretty and rather accessible?' - Queenie
-
If you've deinterlaced, then you would encode progressive and Field First options don't apply.
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books
Similar Threads
-
when Pal dvd has correct Ntsc audio (Pal>Ntsc conver)
By spiritgumm in forum Video ConversionReplies: 15Last Post: 13th Oct 2011, 12:57 -
PAL to NTSC, NTSC to PAL framerate conversion?
By Baldrick in forum Video ConversionReplies: 44Last Post: 5th Dec 2009, 23:31 -
Creating NTSC Blu ray DVD From PAL TS Files. need help with NTSC format
By Rick0725 in forum Authoring (Blu-ray)Replies: 0Last Post: 9th Apr 2009, 21:43 -
NTSC to PAL, PAL to NTSC framerate conversion?
By Baldrick in forum Video ConversionReplies: 23Last Post: 23rd Apr 2008, 11:19 -
NTSC-PAL-NTSC (25-23.976+pulldown) and audio sync problem - related?
By ecc in forum Video ConversionReplies: 14Last Post: 14th Nov 2007, 11:34