View Single Post
Old 30th August 2014, 16:12   #6  |  Link
feisty2
I'm Siri
 
feisty2's Avatar
 
Join Date: Oct 2012
Location: void
Posts: 2,633
Quote:
Originally Posted by asarian View Post
On the matter of trimming, could Trim() be used to splice two or more sources? (Cut on I-Frames boundaries, of course). That way, instead of doing 1 huge >200 hour encoding session, I might chop it up into several (lossless) parts, and spice em all together later on.

Or does AviSynth only alllow 1 video source?

Thanks.
if your clips are in the same format (same resolution, same colorspace, same framerate) you can just use "+" to join them together
Code:
a1=clip1
a2=clip2
a3=clip3
....
return a1+a2+a3+....
the upper script will get all the clips together again
feisty2 is offline   Reply With Quote