Log in

View Full Version : Appending avs


beefcake
11th February 2007, 22:56
Appending avs files isn't possible in VD/VDM. Is it possible to sort of append files within an avs script, then opening it in VD/VDM and editing it?

Koti
11th February 2007, 23:24
AlignedSplice(import("J:\File\1.avs"),import("J:\File\2.avs"),import("J:\File\3.avs"))
One way to append avs's

more info
http://avisynth.org/index.php?page=Splice

stickboy
12th February 2007, 03:51
I don't think you can use Import like that. Import is basically a programmatic copy-and-paste.

Use AVISource.
AVISource("1.avs") + AVISource("2.avs") + AVISource("3.avs")