I've read the documentation, but it assumes that I know what I'm doing or can understand it.![]()
I'm trying to "reverse" an AVI clip.
My AVS is so far:
a = AVISource("c:\temp\foo.avi")
Reverse (a)
What am I doing wrong?
+ Reply to Thread
Results 1 to 11 of 11
-
-
or:
a = AVISource("c:\temp\foo.avi")
Reverse (a)
return a
In the original example, there is no video to output. -
You have to remove the space between Reverse and (a), thus
a = AVISource("c:\temp\foo.avi")
Reverse(a)
or just
AVISource("c:\temp\foo.avi")
Reverse
celtic, celtic ... the video is not reversed in your script -
very good forum.
I posted earlier [2 movies in 1 sceen] and got good leads.
I got the Reverse to work and at last figured out the Stackhorizontal command.
I was trying to create a new movie, let say #3, made of 2 movies (#1 and #2) playing in same screen next to eachother.
here is my script for who ever might be interested (and like me doesn't know much about this world):
Stackhorizontal(AVISource("C:\movie1.avi"), AVISource("C:\movie2.avi"))
works great. thanks to all of you.
olivier -
I always did it this way:
Code:a=AVISource("c:\temp\foo.avi") a=Reverse(a) return a
Code:a=AVISource("c:\temp\foo.avi") return Reverse(a)
-
Or this way:
Code:AVISource("c:\temp\foo.avi") Reverse()
Code:a=AVISource("c:\temp\foo.avi") b=Reverse(a) stackvertical(a,b)
ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
Okay, maybe not!
ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W
Similar Threads
-
Help. Avisynth Error Message "no function named limitedsharpen"
By Pitorasilo in forum Video ConversionReplies: 7Last Post: 27th Dec 2010, 06:13 -
AviSynth "ConvertToYV12()" command - correct placement in script?
By spicediver10191 in forum Video ConversionReplies: 2Last Post: 11th Dec 2010, 19:15 -
Filtering the cult series "Invader ZIM" using Avisynth
By rm2kpro in forum Video ConversionReplies: 6Last Post: 24th Jul 2010, 21:10 -
How to "reverse letterbox" 4:3 video?
By gonzoron in forum Video ConversionReplies: 3Last Post: 22nd Feb 2009, 01:34 -
Help. Avisynth Error Message "no function named deblock"
By hypnoticpimp in forum Video ConversionReplies: 13Last Post: 27th Sep 2008, 23:45