Log in

View Full Version : Crop some parts of a movie?


vrooooom
22nd November 2008, 14:24
I'm using MeGUI to create an AVS script for my bluray backups. Is it possible to only crop some scenes (bases on frames) with AVS? If so how?

poisondeathray
22nd November 2008, 16:25
One option is to use Trim() in avisynth

e.g. Trim(100,200)++Trim(400,500) would use frames 100-200 and join frames 400-500. You could use AvsP to preview visually.

MeGUI's avs cutter does basically the same thing, and you can save a .clt file for the matching audio section

vrooooom
22nd November 2008, 17:20
thanks, i will try :)