PDA

View Full Version : How can I split the video side-by-side in Avisynth?


Bulletproof
22nd August 2002, 01:41
Is there a way I can set AVISynth to show two clips side by side? The reason for this is so I can see how a filter affects the video. Like the filtered video on the right and the original on the left.

matrix
22nd August 2002, 03:31
Yeah.
clip1=your clip
clip2=your other clip
clip=StackHorizontal(clip1,clip2)
return clip

Belgabor
22nd August 2002, 09:36
If you just want to see the result of one Filter(Chain) compared to the original its even more simple.

Just Add
- StackHorizontal(YourFilters)

Cheers
Belgabor