logo Sign In

Post #269334

Author
pittrek
Parent topic
23.976 FPS to 25 FPS pulldown
Link to post in topic
https://originaltrilogy.com/post/id/269334/action/topic#269334
Date created
2-Feb-2007, 1:57 AM
If I understand it correctly, you want to convert NTSC to PAL without changing the speed / pitch of the audio track ?
I usually do in AviSynth this way :

LoadPlugin("path_to_mpeg2dec")

AudioDub(mpeg2source("path_to_d2v_file"), WavSource("path_to_wav_file").ResampleAudio(48000))
Lanczos4Resize(720, 576)
return ConvertFPS(25.000)


this way it way have the correct fps and the sound will be untouched, but perfectly synchronized.