Log in

View Full Version : Joining 2 files within an avs script


Sorrow
13th May 2003, 11:40
I know I've seen this posted on here, but it's been such a long time ago. Hoping someone can refresh my memory. I have 2 dvd2avi project files... is there a way I can join them in my avs file, so when I load up nandub and load the avs, it will encode the first file, then right into the second file? Thanks in advance guys.

S.

N_F
13th May 2003, 11:49
Well, I'm not 100% certain it'll work as I've never tried it, but I think this will do:

mpeg2source("1.d2v")+mpeg2source("2.d2v")

stax76
13th May 2003, 13:06
this should work

Niņo
13th May 2003, 13:09
A=mpeg2source("1.d2v")
B=mpeg2source("2.d2v")
return A+B

Sorrow
13th May 2003, 13:37
Thanks for all the help. I'll give it a test run this afternoon when I get home. Thanks again guys.

S.

kastro68
13th May 2003, 17:13
You can also use

UnalignedSplice(a,b)