Shernand
20th May 2004, 20:16
Hi,
I'm using Avisynth 2.54 and Virtualdub 1.5.10
I have the following avs script :
------------------------------------------------------------
a=AVISource("C:\Clip01.Avi")
b=AVISource("C:\Clip02.Avi").ChangeFPS(24).BicubicResize(512,276).AddBorders(0,54,0,54).Resampleaudio(44100)
c=AVISource("C:\Clip03.Avi").ChangeFPS(24).BicubicResize(512,384)
d=AVISource("C:\Clip04.Avi").ChangeFPS(24).BicubicResize(512,384)
e=AVISource("C:\Clip05.Avi").ChangeFPS(24).BicubicResize(512,384)
f=AVISource("C:\Clip06.Avi").ChangeFPS(24).BicubicResize(512,384)
g=AVISource("C:\Clip07.Avi").ChangeFPS(24).BicubicResize(512,384)
h=AVISource("C:\Clip08.Avi").ChangeFPS(24).BicubicResize(512,384)
i=AVISource("C:\Clip09.Avi").ChangeFPS(24).BicubicResize(512,384)
j=AVISource("C:\Clip10.Avi").ChangeFPS(24).BicubicResize(512,384)
k=AVISource("C:\Clip11.Avi").ChangeFPS(24).BicubicResize(512,384)
l=AVISource("C:\Clip12.Avi").ChangeFPS(24)
AlignedSplice(a,b,c,d,e,f,g,h,i,j,k,l)
-------------------------------------------------------------
Since all the clips have MP3 or VBR-MP3 soundtracks, i wanted to know where to "insert" the EnsureVBRMP3Sync (after the change fps, before the resample).
Also, another question, for avs compressing to xvid 1.0, is it better to use virtualdub or virtualdubmod?
Note 1 : I use bicubic due that resulting clip will be of small bitrate.
Note 2 : I use ChangeFPS due that using ConvertFPS crashes Avisynth (Tested also on latest 2.55)
Note 3 : I use Resampleaudio due that SSRC crashes Avisynth (Tested also on latest 2.55)
Thanks in advance for all the help you people could give me ;)
-- Shernand
I'm using Avisynth 2.54 and Virtualdub 1.5.10
I have the following avs script :
------------------------------------------------------------
a=AVISource("C:\Clip01.Avi")
b=AVISource("C:\Clip02.Avi").ChangeFPS(24).BicubicResize(512,276).AddBorders(0,54,0,54).Resampleaudio(44100)
c=AVISource("C:\Clip03.Avi").ChangeFPS(24).BicubicResize(512,384)
d=AVISource("C:\Clip04.Avi").ChangeFPS(24).BicubicResize(512,384)
e=AVISource("C:\Clip05.Avi").ChangeFPS(24).BicubicResize(512,384)
f=AVISource("C:\Clip06.Avi").ChangeFPS(24).BicubicResize(512,384)
g=AVISource("C:\Clip07.Avi").ChangeFPS(24).BicubicResize(512,384)
h=AVISource("C:\Clip08.Avi").ChangeFPS(24).BicubicResize(512,384)
i=AVISource("C:\Clip09.Avi").ChangeFPS(24).BicubicResize(512,384)
j=AVISource("C:\Clip10.Avi").ChangeFPS(24).BicubicResize(512,384)
k=AVISource("C:\Clip11.Avi").ChangeFPS(24).BicubicResize(512,384)
l=AVISource("C:\Clip12.Avi").ChangeFPS(24)
AlignedSplice(a,b,c,d,e,f,g,h,i,j,k,l)
-------------------------------------------------------------
Since all the clips have MP3 or VBR-MP3 soundtracks, i wanted to know where to "insert" the EnsureVBRMP3Sync (after the change fps, before the resample).
Also, another question, for avs compressing to xvid 1.0, is it better to use virtualdub or virtualdubmod?
Note 1 : I use bicubic due that resulting clip will be of small bitrate.
Note 2 : I use ChangeFPS due that using ConvertFPS crashes Avisynth (Tested also on latest 2.55)
Note 3 : I use Resampleaudio due that SSRC crashes Avisynth (Tested also on latest 2.55)
Thanks in advance for all the help you people could give me ;)
-- Shernand