Log in

View Full Version : "Merging" two Videos with AviSynth


merlinmage
14th June 2009, 12:18
Hi guys,
I have two rendered sequences (sequence A and sequence B) and want to put them in one AviSynth script to "merge" them,
so that after I encoded the file, sequence B starts right after sequence A (without any frame inbetween).

My question is,is that really possible to do with AviSynth?

Regards,
merlin

J_Darnley
14th June 2009, 12:45
a = SomeSource()
b = SomeSource()
a + b

merlinmage
14th June 2009, 12:56
Thanks, you saved my life =)