PDA

View Full Version : Use Plugins only on certain frames?


Aceman
7th February 2003, 23:44
Hi,

I want to use some Plugins (namely MSharpen and Tweak from Donald Graft) only on certain parts of the source, i.e. from frame 0 to 3000 / 3050 to 4500 etc. . Is there a way to do this or do I have to look for other Plugins which support this function?

Thanks,
Aceman

Bidoche
8th February 2003, 00:01
Well, seems you didn't read the tutorial about scripting language on www.avisynth.org

Avisynth has all you need for that, namely trim and +

ie clip.trim(0, 3000).MSharpen(args) + clip.trim(3001, 3049) + ....

Aceman
8th February 2003, 00:08
Originally posted by Bidoche
Well, seems you didn't read the tutorial about scripting language on www.avisynth.org

You've got me there. :)


Avisynth has all you need for that, namely trim and +

ie clip.trim(0, 3000).MSharpen(args) + clip.trim(3001, 3049) + ....


Thanks a bunch.

Aceman