Changing volume of left and right audio channels at DVinfo.net
DV Info Net

Go Back   DV Info Net > Windows / PC Post Production Solutions > What Happens in Vegas...
Register FAQ Today's Posts Buyer's Guides

What Happens in Vegas...
...stays in Vegas! This PC-based editing app is a safe bet with these tips.

Reply
 
Thread Tools Search this Thread
Old September 2nd, 2011, 05:11 AM   #1
Trustee
 
Join Date: Jul 2007
Location: New Zealand
Posts: 1,180
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.
Renton Maclachlan is offline   Reply With Quote
Old September 2nd, 2011, 05:22 AM   #2
Inner Circle
 
Join Date: Sep 2006
Location: Sydney.
Posts: 2,887
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.
__________________
Drink more tap water. On admission at Sydney hospitals more than 5% of day patients are de-hydrated.
Allan Black is offline   Reply With Quote
Old September 2nd, 2011, 05:23 AM   #3
Inner Circle
 
Join Date: Jul 2009
Location: Perth, Western Australia
Posts: 8,441
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
Chris Harding is offline   Reply With Quote
Old September 2nd, 2011, 06:07 AM   #4
Inner Circle
 
Join Date: May 2005
Location: Windsor, ON Canada
Posts: 2,770
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.
Mike Kujbida is offline   Reply With Quote
Old September 2nd, 2011, 06:33 AM   #5
Inner Circle
 
Join Date: May 2005
Location: Windsor, ON Canada
Posts: 2,770
Re: Changing volume of left and right audio channels

Here's a zipped file of the script Chris was talking about.
Thanks to Edward Troxel for making it available.
Attached Files
File Type: zip StereoSplit.zip (610 Bytes, 104 views)
Mike Kujbida is offline   Reply With Quote
Old September 2nd, 2011, 10:57 AM   #6
Jubal 28
 
Join Date: Mar 2005
Location: Wilmington, NC
Posts: 872
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.
David Jimerson is offline   Reply With Quote
Old September 2nd, 2011, 04:03 PM   #7
Major Player
 
Join Date: Nov 2003
Location: Sweden
Posts: 221
Re: Changing volume of left and right audio channels

Quote:
Originally Posted by Mike Kujbida View Post
Pro 10 gives you the option of bringing a stereo track in as two mono tracks.
Options - Preferences - General - Import stereo as dual mono
Thank you Mike, very useful.

/m
__________________
Magnus Helander, Crossmediageek on G+
Magnus Helander is offline   Reply With Quote
Old September 3rd, 2011, 01:50 AM   #8
Major Player
 
Join Date: Aug 2010
Location: United Kingdom
Posts: 354
Re: Changing volume of left and right audio channels

Quote:
Originally Posted by David Jimerson View Post
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.
David. Does this apply to VMS 10 HD platinum as well as Vegas pro
Roy Alexander is offline   Reply With Quote
Old September 3rd, 2011, 07:08 AM   #9
Sponsor: JET DV
 
Join Date: Dec 2001
Location: Southern Illinois
Posts: 7,953
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.
Edward Troxel is offline   Reply With Quote
Old September 3rd, 2011, 02:08 PM   #10
Trustee
 
Join Date: Jul 2007
Location: New Zealand
Posts: 1,180
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...
Renton Maclachlan is offline   Reply With Quote
Old September 3rd, 2011, 02:12 PM   #11
Trustee
 
Join Date: Jul 2007
Location: New Zealand
Posts: 1,180
Re: Changing volume of left and right audio channels

Quote:
Originally Posted by Mike Kujbida View Post
Here's a zipped file of the script Chris was talking about.
Thanks to Edward Troxel for making it available.
I got a Windows error message when I tried to open the file...'Syntax error' - I'm running Win 7...
Renton Maclachlan is offline   Reply With Quote
Old September 3rd, 2011, 04:49 PM   #12
Inner Circle
 
Join Date: May 2005
Location: Windsor, ON Canada
Posts: 2,770
Re: Changing volume of left and right audio channels

Quote:
Originally Posted by Renton Maclachlan View Post
I got a Windows error message when I tried to open the file...'Syntax error' - I'm running Win 7...
Hmm. Not sure why that happened.
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);
}
Mike Kujbida is offline   Reply With Quote
Old September 3rd, 2011, 06:56 PM   #13
Trustee
 
Join Date: Jul 2007
Location: New Zealand
Posts: 1,180
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...
Renton Maclachlan is offline   Reply With Quote
Old September 3rd, 2011, 07:09 PM   #14
Inner Circle
 
Join Date: May 2005
Location: Windsor, ON Canada
Posts: 2,770
Re: Changing volume of left and right audio channels

Why did you double click it?
Mike Kujbida is offline   Reply With Quote
Old September 4th, 2011, 06:39 AM   #15
Sponsor: JET DV
 
Join Date: Dec 2001
Location: Southern Illinois
Posts: 7,953
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.
Edward Troxel is offline   Reply
Reply

DV Info Net refers all where-to-buy and where-to-rent questions exclusively to these trusted full line dealers and rental houses...

B&H Photo Video
(866) 521-7381
New York, NY USA

Scan Computers Int. Ltd.
+44 0871-472-4747
Bolton, Lancashire UK


DV Info Net also encourages you to support local businesses and buy from an authorized dealer in your neighborhood.
  You are here: DV Info Net > Windows / PC Post Production Solutions > What Happens in Vegas...


 



All times are GMT -6. The time now is 03:44 PM.


DV Info Net -- Real Names, Real People, Real Info!
1998-2024 The Digital Video Information Network