Log in

View Full Version : VirtualDub-Anything like "Save Project As"


WayneRocks
2nd July 2006, 06:12
After graduating from the simplicity of WMM I am now starting to work with VD and Avisynth.

Sometimes I get tired after doing numerous edits to the timeline, and start making dumb mistakes.

Is there anyway to save my edits of the current timeline, exit VD and pick-up the "project" at a later time?

Sorry to equate to such a basic prgm [WMM] but we all had to start somewhere.

TIA - Wayne

unskinnyboy
2nd July 2006, 06:29
Try File -> Save processing settings to save your current settings and File -> Load processing settings to restore them.

WayneRocks
5th July 2006, 21:46
Your method is only saving the current filter combination.

I was asking about saving edits to the time line.

I am using an AVS script. Is this preventing me from saving the edits?

LocalH
6th July 2006, 00:00
If you mark down on a notepad the ranges of video that you don't cut out, you can then use those values to do the cuts in AviSynth using the Trim command multiple times to cut out segments from the original source, such as this:
<filterchain here>
p=last
Trim(p,0,<seg 1 end>).Trim(p,<seg 2 start>,<seg 2 end>).Trim(p,<seg 3 start>,<seg 3 end>)

You can extend that out to as many segments as you need, and can stop at any time as long as you save the script normally.

WayneRocks
6th July 2006, 20:20
LocalH

Understood. Thank-You for your kind answer and direction.

Wayne

Dan Nelson
18th July 2006, 00:02
You could also just check the "Include selection and edit list" checkbox in the save dialog when you go to [File]->[Save processing settings].