ways to convert audio from mono to stereo?

target wrote on 6/29/2025, 5:06 PM

so i know you can right click an audio clip in vegas and go to -> Channels -> Combined but doing this for every audio clip seems a bit tedious to be honest.

i'm just using vegas to record voice overs; over my video. is there perhaps a menu in the audio track where u can record as stereo rather than mono? OBS studio has this feature where if your microphone is mono, you can click mono and it'll record the audio as stereo.

 

thanks!

Comments

Gid wrote on 6/29/2025, 5:35 PM

@target This script will change selected events from stereo to mono.

Go to C:\Users\'name'\OneDrive\Documents\Vegas Script Menu, duplicate (copy & paste) one of the cs files, rename it keeping the .cs extension at the end & replace the contents with the script below. This will then show in Tool - Scripting. You can pin scripts to the Toolbar at the top of the Vegas UI.

using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Windows.Forms;
using System.Globalization;
using System.Drawing;
using System.Runtime;
using System.Xml;
using ScriptPortal.Vegas;

namespace Test_Script
{
    public class Class1
    {
        public Vegas myVegas;

        public void Main(Vegas vegas)
        {
            Vegas myVegas = vegas;

            foreach(Track myTrack in myVegas.Project.Tracks)
            {
                foreach(TrackEvent evnt in myTrack.Events)
                {
                    if (evnt.Selected && evnt.IsAudio())
                    {
                        AudioEvent aevnt = (AudioEvent)evnt;

                        aevnt.Channels = ChannelRemapping.Mono;
                    }
                }
            }
        }
    }
}

public class EntryPoint
{
    public void FromVegas(Vegas vegas)
    //public void FromVegas(Vegas vegas, String scriptFile, XmlDocument scriptSettings, ScriptArgs args)
    {
        Test_Script.Class1 test = new Test_Script.Class1();
        test.Main(vegas);
    }
}

 

Vegas Pro 18 - 22
Vegas Pro/Post 19
Boris Continuum & Sapphire, 
Silhouette Standalone + Plugin, 
Mocha Pro Standalone + Plugin, 
Boris Optics,
NewBlue TotalFX
Desktop PC Microsoft Windows 10 Pro - 64-Bit
ASUS PRO WS WRX80E-SAGE SE WIFI AMD Motherboard
AMD Ryzen Threadripper PRO 3975WX 3.5GHz 32 Core
Corsair iCUE H150i RGB PRO XT 360mm All-in-One Liquid CPU Cooler
RAM 256GB ( 8x Micron 32GB (1x 32GB) 2666MHz DDR4 RAM )
2x Western Digital Black SN850 2TB M.2-2280 SSD, 7000MB/s Read, 5100MB/s Write
(programs on one, project files on the other)
Graphics MSI GeForce RTX 3090 SUPRIM X 24GB OC GPU
ASUS ROG Thor 1200W Semi-Modular 80+ Platinum PSU 
Fractal Design Define 7 XL Dark TG Case with 3 Fans
Dell SE3223Q 31.5 Inch 4K UHD (3840x2160) Monitor, 60Hz, & an Acer 24" monitor.

At the moment my filming is done with a Samsung Galaxy S23 Ultra 5G & a GoPro Hero11 Black

I've been a Joiner/Carpenter for 40yrs, apprentice trained time served, I don't have an apprentice of my own so to share my knowledge I put videos on YouTube.

YouTube videos - https://www.youtube.com/c/Gidjoiner