Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1 | Link |
|
Registered User
Join Date: Aug 2005
Posts: 4
|
PAL avi->NTSC DVD using CCE problems
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?
Last edited by joesphroth; 4th March 2006 at 20:37. |
|
|
|
|
|
#3 | Link |
|
Registered User
Join Date: Apr 2005
Posts: 224
|
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 Last edited by MrTroy; 5th March 2006 at 12:18. |
|
|
|
|
|
#4 | Link |
|
Movie buff & shine
Join Date: Jan 2004
Location: Logan, the only hole above ground.
Posts: 257
|
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... Telecine (for film content) Code:
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 ()
EDIT: Script wasn't correct with variable names... woops! :-)
__________________
I'm a boxer who can Bob () & Weave (). I like to Overlay () punches and Blur () his vision to ShowFiveVersions (). My KO punch will always Pulldown ().TimeStretch () and all he will hear is Tone (). Last edited by actionman133; 5th March 2006 at 22:00. |
|
|
|
|
|
#5 | Link | |
|
Registered User
Join Date: Apr 2005
Posts: 224
|
Quote:
But you're right, joesphroth probably needs audio processing in his script. |
|
|
|
|
![]() |
|
|