View Full Version : PAL avi->NTSC DVD using CCE problems
joesphroth
1st March 2006, 22:11
I'm converting a PAL 25fps avi to NTSC dvd using CCE 2.70 and no matter what i do its either too fast or too slow or its blury. What would be the proper way to do this using avisynth?
joesphroth
4th March 2006, 20:37
I have tried using FPS and not having any luck.
MrTroy
5th March 2006, 11:16
I think the easiest way is to first change to NTSCFilm (23.976 fps) and then telecine.
# first set NTSCFilm framerate
AssumeFPS(23.976)
# now do a telecine (copied from AviSynth manual)
SeparateFields
SelectEvery(8, 0,1, 2,3,2, 5,4, 7,6,7)
Weave
actionman133
5th March 2006, 15:59
I think there's a couple errors in that script, Troy....
Shouldn't it be 'AssumeFPS(23.976, True)', to sync the audio? Although you will have to resample the audio, it's better than losing sync... :rolleyes:
Telecine (for film content)
AVISource ("blah.avi")
AssumeFPS (23.976, True)
SSRC (48000) # Or other desired audio sample rate
SeparateFields () # Telecine
SelectEvery (8, 0,1, 2,3,2, 5,4, 7,6,7)
Weave ()
Also, this only applies to content that was recorded at 24p, like film. If it's video, like a TV show or a home movie, you'll need a slightly different method...
EDIT: Script wasn't correct with variable names... woops! :-)
MrTroy
5th March 2006, 18:35
I think there's a couple errors in that script, Troy....
Well, that's not exactly an error, I just never do anything with audio in my scripts. The encoders I use don't do audio encoding.
But you're right, joesphroth probably needs audio processing in his script.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.