Comments

michael_morlan wrote on 9/8/2004, 9:37 AM
There is a script that comes with Vegas 5 that removes a specific effect from all clips. Look at the "Remove Timecode From All Media.js" script. I've pasted it below for reference. You can change the name of the effect hardcoded in the script to remove your cc effects. Just don't overwrite your original project file. :-)

M

/**
* This script will remove all effects of a particular type from items
* in the project's media pool.
*
* Revision Date: Jan. 30, 2003
**/
import System.Windows.Forms;
import Sony.Vegas;

// This is the full name of the plug-in associated with the effects
// you want to remove.
var plugInName = "Sony Timecode";

try {
var mediaEnum = new Enumerator(Vegas.Project.MediaPool);
while (!mediaEnum.atEnd()) {
var media = mediaEnum.item();
var effectsEnum = new Enumerator(media.Effects);
while (!effectsEnum.atEnd()) {
var effect = effectsEnum.item();
if (plugInName == effect.PlugIn.Name) {
media.Effects.Remove(effect);
}
effectsEnum.moveNext();
}
mediaEnum.moveNext();
}
} catch (e) {
MessageBox.Show(e);
}
fwtep wrote on 9/8/2004, 11:47 AM
Thanks M, I appreciate the help!
GaryKleiner wrote on 9/8/2004, 2:23 PM
If you want to tempoprarily turn off the FX, Right-Click on the FX button, choose bypass FX.

Gary
TimTyler wrote on 7/27/2005, 1:18 PM
I think it would be great to have a global 'Bypass Video Effects' button that would ignore any filters applied to video tracks.

I have Magic Bullet filters applied to 99% of my video events and they make it impossible to render anything quickly even in Draft mode. In order to tweak an edit I need to uncheck the video effects in that event, adjust my edit, and then remember to re-check the effects.

Please, please, Sony.
Chienworks wrote on 7/27/2005, 2:13 PM
Or better yet, effects groups. Build a list of groups as you assign effects, and attach each effect to one of those groups. Then pull down the list and enable/bypass the whole group at a single click!

Or can we already do something like this with video buss tracks? It wouldn't allow event-level effect switching, but maybe that is a limitation that can be lived with now and then.
GlennChan wrote on 7/27/2005, 8:25 PM
Chien,
How do you build effects groups?
Didn't see mentions of it in the manual.

2- Tim:
In the video preview window, you can click on the white/blue rectangle with a circle inside it. In the drop-down for it, select bypass FX. This does a global FX bypass, not at the event level which you gotta click on every clip.


An alternative is to apply MBE on the track level. On each clip (event FX), use the color corrector filter to adjust exposure (it doesn't affect saturation or hue unlike other filters).
You can even apply color correction on the media FX level, although that can get confusing sometimes.
Spot|DSE wrote on 7/27/2005, 8:29 PM
I believe Kelly was speaking hypothetically. All you can do is create chains, but not groups like you can with audio. It would be nice if there were a video grouping option, it's been asked about before. Since Vegas treats video like audio/vice-versa, it would be wonderful if we could have video FX buses, rather than just a master with track bypass. I can imagine that would create compositing nightmares though.
GlennChan wrote on 7/27/2005, 8:39 PM
Thanks for the clarification Spot.

While we're at it, I'd also like to see filter names you can change. When you have several filters on, the long names means lots of scrolling in the FX window.
Chienworks wrote on 7/28/2005, 7:02 AM
Yes, sorry about that. I realize now i wasn't terribly clear. I was speaking hypothetically. I really need to go copy that over to the product suggestion page.
TimTyler wrote on 7/28/2005, 8:04 AM
> you can click on the white/blue rectangle with a circle
> inside it. In the drop-down for it, select bypass FX

Perfect! Thanks.