I was wondering if anyone could kindly advice me on the stackhorizontal filter in Avisynth. I love how you can set up a 'before and after' this way. Now I just export the filtered video and original to the same size and then afterwards I stack them in a second run.
I have been looking online, but cannot find it; is it also possible to directly at the end of your elaborate script to stack the filtered video and the original in one run?
Thanks for your help!
+ Reply to Thread
Results 1 to 4 of 4
-
-
Code:
Src = MySource("MyFile.vdo") Src Filter() StackHorizontal(last, Src)
-
When you don't name a stream AviSynth uses the name "last". So a sequence like:
Code:AviSource("filename.avi") Filter1() Filter2()
Code:last = AviSource("filename.avi") last = Filter1(last) last = Filter2(last) return(last)
Code:AviSource("filename.avi") unfiltered = last Filter1() # acts on last (the source), creates a new last Filter2() # acts on last from Filter1(), creates a new last StackHorizontal(unfiltered, last)
Last edited by jagabo; 21st Oct 2014 at 07:56.
-
Thanks so much Jagabo and ndjamena. That did the trick! Good to understand the 'last' principle!
Case closed