digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Multiple Sources in one script? (http://www.digitalfaq.com/archives/avisynth/5655-avisynth-multiple-sources.html)

Bchteam 09-18-2003 03:58 PM

Avisynth: Multiple Sources in one script?
 
How can I put 6 multiple sources into script ?

I have 6 clips and I want to encode them into one KVCD, so how has my "Directshowsource("J:\)" to look exactly ???

rendalunit 09-18-2003 06:25 PM

You could do that like this:
Code:

DirectShowSource("C:\My Documents\movie_1.mpg) ++
\DirectShowSource("C:\My Documents\movie_2.mpg) ++
\DirectShowSource("C:\My Documents\movie_3.mpg) ++
\DirectShowSource("C:\My Documents\movie_4.mpg) ++
\DirectShowSource("C:\My Documents\movie_5.mpg) ++
\DirectShowSource("C:\My Documents\movie_6.mpg) ++

each source has to be the same resolution but if they're not, you can resize each seperately like this:
Code:

a=AviSource("C:\My Documents\movie_1.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
b=AviSource("C:\My Documents\movie_2.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
c=AviSource("C:\My Documents\movie_3.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
d=AviSource("C:\My Documents\movie_4.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
e=AviSource("C:\My Documents\movie_5.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
f=AviSource("C:\My Documents\movie_6.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)

movie=a+b+c+d+e+f

AddBorders(movie, 0, 9, 0, 9)

ren

Bchteam 09-19-2003 12:12 AM

Biggie Up to me man rendalunit :!: :!: :!:


All times are GMT -5. The time now is 01:37 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.