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

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage
Register FAQ Today's Posts Search

Reply
 
Thread Tools Search this Thread
Old 1st March 2006, 22:11   #1  |  Link
joesphroth
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.
joesphroth is offline   Reply With Quote
Old 4th March 2006, 20:37   #2  |  Link
joesphroth
Registered User
 
Join Date: Aug 2005
Posts: 4
I have tried using FPS and not having any luck.
joesphroth is offline   Reply With Quote
Old 5th March 2006, 11:16   #3  |  Link
MrTroy
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.
MrTroy is offline   Reply With Quote
Old 5th March 2006, 15:59   #4  |  Link
actionman133
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 ()
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! :-)
__________________
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.
actionman133 is offline   Reply With Quote
Old 5th March 2006, 18:35   #5  |  Link
MrTroy
Registered User
 
Join Date: Apr 2005
Posts: 224
Quote:
Originally Posted by actionman133
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.
MrTroy is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:57.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.