PDA

View Full Version : avi2dvd ?


ClownR
6th March 2006, 01:14
this is a avisynth script from the fitcd app. But i am having problems openning in CCE SP. It can not accept the frame size.

# -= AviSynth v2.5.6.0 script by FitCD v1.2.8 =-
AVISource("H:\Navs.Marriage.avi")
LanczosResize(688,352,6,0,628,352)
AddBorders(16,64,16,64)
AssumeFPS(23.976, true)
#Trim(0,111341).FadeOut(150)
ConvertToYUY2() # For VirtualDub or CCE

What is the problem? btw the source has 25FPS so it is PAL. Also last time i did something similar i had audio sync issues.

actionman133
6th March 2006, 15:17
I can't comment on the frame size issue, but the problem with your audio sync is that you're not resampling the audio. Use ResampleAudio, or preferably (and if possible) SSRC to resample the audio to your desired output sample rate.

communist
6th March 2006, 15:26
the source has 25FPS so it is PAL.
LanczosResize(688,352,6,0,628,352)
AddBorders(16,64,16,64)
AssumeFPS(23.976, true)
The output is 720x480 (NTSC DVD) but at 23.976 FPS, the specs for NTSC DVDs allow AFAIK only 29.976 FPS. For PAL resize to 720x576 at 25 FPS.
Audio sync issues will certainly occur if you mess with these things though it is not necessary.