In AVS i want to do the following
Take two AVI files... and display them on top of each other... then display the next frame from each to the right of them (or the previous frame on the left would be the same effect)
I could imagine something like this?
Code: Select all
v1 = AVISource( "test1.avi")
v2 = AVISource( "test2.avi")
v3 = AVISource( "test1.avi").Trim(1,0)
v4 = AVISource( "test2.avi").Trim(1,0)
baseVids = StackVertical(v1, v2)
nextFrame = StackVertical(v3, v4)
return StackHorizontal( baseVids, nextFrame)
[/code]