logo Sign In

Post #441093

Author
Chewtobacca
Parent topic
2 Avisynth questions?
Link to post in topic
https://originaltrilogy.com/post/id/441093/action/topic#441093
Date created
16-Sep-2010, 5:42 PM

By the ++ operators, I mean typing ++ between trim commands to join up, rather than having to type AlignedSplice and brackets.

To cut out frames 100 and 200 from a video, it might look like this:

AviSource("video.avi")
Trim(0,99) ++ Trim(101,199) ++ Trim(201,0)

I think that's right.  I assume this is being done without audio, so I guess it doesn't matter whether you use aligned or unaligned splice.  I just do it this way out of habit.