luders
20th November 2003, 05:32
CCE was crashing when I tried to load an avisource script with an xvid file. I was using AviSynth 2.08 and I gave AviSynth 2.5.3 a try. That combined with using DirectShowSource instead of AviSource made it successfully load into CCE 2.50. However, after encoding, the playback was slowed down so that the video was in super slow motion. Turns out, in analyzing the frames in VirutalDub, DirectShowSource is just processing it bad.
Here is my script.
a=DirectShowSource("ttte-part1.avi", fps=23.976)
b=DirectShowSource("ttte-part2.avi", fps=23.976)
c=DirectShowSource("ttte-part3.avi", fps=23.976)
AlignedSplice(a,b,c)
LanczosResize(640,270)
AddBorders(0,45,0,45)
LanczosResize(704,480)
ResampleAudio(44100)
ConvertToYUY2
Perhaps I just dont know what I am doing since this is the first time that I have used DirectShowSource rather than avisource. Any help? -Aaron
Here is my script.
a=DirectShowSource("ttte-part1.avi", fps=23.976)
b=DirectShowSource("ttte-part2.avi", fps=23.976)
c=DirectShowSource("ttte-part3.avi", fps=23.976)
AlignedSplice(a,b,c)
LanczosResize(640,270)
AddBorders(0,45,0,45)
LanczosResize(704,480)
ResampleAudio(44100)
ConvertToYUY2
Perhaps I just dont know what I am doing since this is the first time that I have used DirectShowSource rather than avisource. Any help? -Aaron