Comments

Duderdude2 wrote on 4/18/2005, 5:29 PM
bump
Rednroll wrote on 4/18/2005, 5:52 PM
Goto View>Audio bus tracks.

This will show you a track that is the automation of the the buses. So it will show you a track for the master bus. Select that bus track and hit the "V" key. This will show a volume envelope that you can add points to. You can add as many points that you want and create a fade out or fade in for everything being routed through the master bus.
pelladon wrote on 4/18/2005, 11:16 PM
Sure

/**
* Program: FadeAllAudio.js
* Description: This script will fade in and out all audio events for 1 sec.
* Author: Rich
*
* Date: Apr 18, 2005
**/

import System;
import System.Windows.Forms;
import SonicFoundry.Vegas; // --- for V4
import Sony.Vegas; // --- for V5 and up

try
{
// ---- time interval for fade events ----
var FadeTime : Double = 1000; // --- time in milliseconds ---

for (var track in Vegas.Project.Tracks) {
for (var evnt in track.Events) {
if (evnt.IsAudio()) {
evnt.FadeIn.Length = new Timecode(FadeTime);
evnt.FadeOut.Length = new Timecode(FadeTime);
}
}
}
}
catch (errorMsg)
{
MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
/** end of script **
FuTz wrote on 4/18/2005, 11:20 PM
See, Duderdude ? : D
(cheers pelladon ! )
Zulqar-Cheema wrote on 4/19/2005, 2:45 AM
There is an option to enable fade in and out in Vegas, you can set the duration in tools:properties. every time a clip is put on the time line the audio has the fades in it atomically.
You can add the feature as a button and turn it on and off as desired.
FuTz wrote on 4/19/2005, 4:43 AM
I tried yesterday before posting but it would only give me a fade out and no fade in... ???
pelladon wrote on 4/19/2005, 8:47 AM
I re-edited the code, try again.
pelladon wrote on 4/19/2005, 9:06 AM
That only works during editing, the original poster wanted fades done on all the audio events at once.
PierreB wrote on 4/19/2005, 10:08 AM
Dude,

If you have Excalibur, you can use the Select Events script to select the events on your narration track and then use the Fade wizard to set the type of your fades in/out for all the selected events.

Pierre
Duderdude2 wrote on 4/19/2005, 11:47 AM
Thanks for all the replies guys, I'll be sure to try out that script!