Log in

View Full Version : batch AlignedSplice help : )


bunniboi
16th November 2004, 16:22
Ive been using vdub, avisynth and dubman to batch reveres clips for vjing.

Now what Im trying to do is batch append the clips I have reversed.

The problem is that I don’t want to append all the clips into one big clip
I want to append clip A with clip B and then clip C with clip D and so on…..

I wrote this for dubman but it cant batch append :(

clip2=AviSource ("clipa.avi")

clip1=AviSource ("clipb.avi")

AlignedSplice (clip1,clip2)

Im kind of a newbie at avisynth so I don’t know if this can be done or if there is a program that can do if for me out there.

Any help would be much appreciated

stickboy
16th November 2004, 19:50
So you want two separate files, right?

Script #1:
a = AVISource("clipA.avi")
b = AVISource("clipB.avi")

b ++ aScript #2:c = AVISource("clipC.avi")
d = AVISource("clipD.avi")

d ++ c

bunniboi
17th November 2004, 12:08
Thanks for that :)

The one thing is I would like to be able to do some were up to 50 files or more with out having to type every file name in the code.

So I think it might be a bit harder then I first thought, then again it could be a challenge ;)

stickboy
18th November 2004, 09:14
You might be able to make use of some of the tips in this thread:
generate avs-script for similar sourcefiles in directory (http://forum.doom9.org/showthread.php?s=&threadid=79259)