![]() |
Changing volume of left and right audio channels
Is it possible to change the volume of left and right audio channels separately? I have recorded using two mics - one to each channel - but one is louder than the other and I want to even them up.
|
Re: Changing volume of left and right audio channels
G'day Rinso :) Yep it's possible to do that and lock 'em so they don't change levels. You right click (on something) properties I think, and disable 'em. Set the new balance and lock 'em up again. I remember doing this with the master gain which wasn't balanced evenly.
Don't balance it by the meter though, balance it through listening on speakers, check on headphones and vice versa. Cheers. |
Re: Changing volume of left and right audio channels
Hey Renton
There is a script called "Stereo Split" that will do the job but I do it manually. Ungroup the video and audio and then copy and paste the audio into a new audio track on the time line so you have two stereo audio tracks!! On the first track, right click and select "Channel" and select "Left Channel Only" and then do the opposite with the second track and you will have right and left channels with complete control of either!! Finally group the video and two audio tracks all together in case you need to edit or move them!! Chris |
Re: Changing volume of left and right audio channels
Pro 10 gives you the option of bringing a stereo track in as two mono tracks.
Options - Preferences - General - Import stereo as dual mono When this check box is selected, two-channel audio files will be opened as separate mono audio events on separate tracks. The audio events are grouped, and tracks that are created by adding media will be panned hard left and hard right. You can select an event and choose Edit > Channels to choose which channel is used for that event. The bold sentence above is the only thing I don't like about this particular option. I have no idea what Sony was thinking when they did it this way. |
Re: Changing volume of left and right audio channels
1 Attachment(s)
Here's a zipped file of the script Chris was talking about.
Thanks to Edward Troxel for making it available. |
Re: Changing volume of left and right audio channels
The Master levels slider in the Mixer window allows you to control L and R volume separately. Of course, this affects the entire project, but if you want to do it for all of your audio, it's an option.
|
Re: Changing volume of left and right audio channels
Quote:
/m |
Re: Changing volume of left and right audio channels
Quote:
|
Re: Changing volume of left and right audio channels
Yes, Roy, it does. VMS will also let you adjust the master volume channels separately. You *DO* have to "unlock" them, though, in either VMS or Vegas Pro. Just click on the little lock button below the master sliders.
|
Re: Changing volume of left and right audio channels
Thanks for the help guys. Much appreciated. I'm heading off for a week (family holiday skiing on Mt Ruapahu - weather looks great for a few days!!) so won't be able to play around with this till I'm back - but it looks straightforward. Thanks again. Appreciated...
|
Re: Changing volume of left and right audio channels
Quote:
|
Re: Changing volume of left and right audio channels
Quote:
I'll post the text for it and hope that it keeps the formatting. Copy everything below and save it as StereoSplit.js /** * This script will split a stereo track into two separate tracks. * * Written By: Edward Troxel * Copyright 2005 - JETDV Scripts * Modified: 10-17-2005 **/ import System; import System.IO; import System.Windows.Forms; import Sony.Vegas; try { for(var track : Track in Vegas.Project.Tracks) { if (track.IsAudio() && track.Selected) { //Add a new audio track var Rtrack = new AudioTrack(track.Index, "Audio-Right"); Vegas.Project.Tracks.Add(Rtrack); for(var evnt : TrackEvent in track.Events) { //Copy all events to the Ltrack var mynewEvent = evnt.Copy(Rtrack, evnt.Start); //Set right to disable left var audioEvent : AudioEvent = AudioEvent(mynewEvent); audioEvent.Channels = ChannelRemapping.DisableLeft; //Set left to disable right audioEvent = AudioEvent(evnt); audioEvent.Channels = ChannelRemapping.DisableRight; } break; } } } catch (e) { MessageBox.Show(e); } |
Re: Changing volume of left and right audio channels
I saved it notepad, but it came up with the error message again when I double clicked it...
|
Re: Changing volume of left and right audio channels
Why did you double click it?
|
Re: Changing volume of left and right audio channels
You don't double-click it. You open Vegas, go to Tools - Scripting - Run Script and then pick that file.
|
All times are GMT -6. The time now is 08:30 PM. |
DV Info Net -- Real Names, Real People, Real Info!
1998-2025 The Digital Video Information Network