Log in

View Full Version : how to convert NTSC (interlaced) videos to PAL (progressive) with out jerky


vizzimani
3rd June 2008, 13:40
Hi to everybody,
i have one videos in NTSC which is interlaced (29.97 fps), i want to convert it to pal(24 fps). I tried by dropping according to my requirement.but i am observing jerks. How can i solve this problem?

thanks in advance.

Blue_MiSfit
9th June 2008, 10:20
Well... first of all PAL is 25fps. Film is 24p (23.976fps).

Why do you need to convert your video to PAL?

~MiSfit

CWR03
9th June 2008, 20:51
Rather than dropping frames, deinterlace the video and convert it to 24 fps, then time-compress the audio to the speed equivalent to 25 and match the video to it.

Atak_Snajpera
14th June 2008, 00:33
Simple example

#VideoSource
LoadPlugin("C:\Users\Dawidos\Documents\Delphi_Projects\RipBot264\Tools\DGAVCDEC\DGAVCDecode.dll")
video=AVCSource("C:\Temp\RipBot264temp\job1\job1.dga")

#Deinterlace
LoadCplugin("C:\Users\Dawidos\Documents\Delphi_Projects\RipBot264\Tools\AviSynth plugins\Yadif\Yadif.dll")
video=yadif(video,mode=1,order=1).ChangeFPS(23.976).AssumeFPS(25)

#AudioSource
LoadPlugin("C:\Users\Dawidos\Documents\Delphi_Projects\RipBot264\tools\AviSynth plugins\NicAudio\NicAudio.dll")
audio=NicAC3Source("C:\Temp\RipBot264temp\job1\audio.1.ac3").TimeStretch(tempo=104.270937604270)


#AudioDub
AudioDub(video,audio)

burfadel
14th June 2008, 00:37
Does the above script get rid of the duplicate frames? They're something you definitely do not want!