clip a = trim(0,the frame # that start the clip you want to exclude).filter
cilp b = trim(frame # that starts your excluded section, frame # that ends your excluded section)
clip c = trim( frame # that ends your excluded section, last frame #).filter
return a+b+c
so let's say you want to use the following chain on every frame except frames 10-20 (your video is 30 frames long):
deen("a3d",3,3,3)
undot()
vmtoon()
your script would end up looking like
Code: Select all
clip a = trim(0,10).deen("a3d",3,3,3).undot().vmtoon()
clip b = trim(10,20)
clip c = trim(20,30).deen("a3d",3,3,3).undot().vmtoon()
return a+b+c
if you need to keep a/v sync you should use "++" instead of "+"
I've never done this myself, so it's possible that I messed the script up somewhere