Click here to Skip to main content
15,867,330 members
Articles / Programming Languages / Visual Basic
Article

Audio Library Part I - (Windows Mixer Control)

Rate me:
Please Sign up or sign in to vote.
4.52/5 (79 votes)
1 Oct 2006CPOL3 min read 604.4K   15.4K   163   165
Library to control Windows Mixer from C#
Sample Image - AudioLib.jpg

Introduction

In this article, I'll show you how to use Windows Mixer from C#.

For some time, I was trying to get information about how to program the mixer from C#. I didn't have too much luck, and the few examples found were in C++, so… I took the hard and fun way... doing it myself.

This library is part of my Audio library to control Wave Audio (Playback/Recording), Mixer, Playback/Recording compressed files using ACM, basic speech recognition and some other stuff that I'll be releasing in future articles.

AudioMixer Namespace

Hierarchical Objects View

Sample screenshot

The hierarchical view shows how the classes are organized.

The main object Mixers contains two Mixer objects, Playback and Recording; those will work with default devices, but can be changed by setting the property Mixers.Playback.DeviceId or Mixers.Recording.DeviceId.

I made it as simple as possible by hiding all the flat Win32 API implementation from the developer and creating a hierarchical set of objects.

Every mixer is autonomous, meaning you can have Playback mixer set to one soundcard and Recording mixer to another one. Also each one contains two arrays or MixerLines (Lines, UserLines).

Lines object will contain all lines inside the mixer, for example all the lines that don't have controls associated with it or lines that are not source lines.

UserLines will contains all lines that the developer can interact with, having controls like Volume, Mute, Fadder, Bass, etc. (basically it is the same as Lines object but a filter was applied to it).

Every Line will contain a collection of controls, like Mute, Volume, Bass, Fader, etc.

If you are interested in knowing more about how Windows Mixer works, here is an excellent link with all the information about it.

Let's See Some Code

To Get the Audio Devices in the Computer

C#
foreach(MixerDetail mixerDetail in mMixers.Devices)
{
    ...
    ...
}

To Get the Input Devices

C#
foreach(MixerDetail mixerDetail in mMixers.Recording.Devices)
{
    ...
    ...
}

Change Output Mixer Device

C#
Mixers mixers = new Mixers();
foreach(MixerDetail mixerDetail in mixers.Playback.Devices)
{
    if (mixerDetail.MixerName == "Sound Blaster Live")
        mixers.Playback.DeviceId = mixerDetail.DeviceId;
}

Change Output Mixer Device to the Default Device

C#
Mixers mixers = new Mixers();
mixers.Playback.DeviceId = -1;

or

C#
mixers.Playback.DeviceId = mixers.Playback.DeviceIdDefault;

Getting Playback Speaker Master Volume

C#
mixers.Playback.Lines.GetMixerFirstLineByComponentType(
    MIXERLINE_COMPONENTTYPE.DST_SPEAKERS).Volume;

Setting Playback Speaker Master Volume for the Left Channel Only

C#
MixerLine line = mixers.Playback.Lines.GetMixerFirstLineByComponentType(
    MIXERLINE_COMPONENTTYPE.DST_SPEAKERS);
line.Channel = Channel.Left;
line.Volume = 32000;

Selecting Microphone as Default Input

C#
mixers.Recording.Lines.GetMixerFirstLineByComponentType(
    MIXERLINE_COMPONENTTYPE.SRC_MICROPHONE).Selected = true; 

Getting Callback Notifications When a Line has Changed

C#
/* Initialization */
mMixers = new Mixers();
mMixers.Playback.MixerLineChanged +=
    new WaveLib.AudioMixer.Mixer.MixerLineChangeHandler(mMixer_MixerLineChanged);
mMixers.Recording.MixerLineChanged +=
    new WaveLib.AudioMixer.Mixer.MixerLineChangeHandler(mMixer_MixerLineChanged);
/* Events */
private void mMixer_MixerLineChanged(Mixer mixer, MixerLine line)
{
    Console.WriteLine("Mixer: " + mixer.DeviceDetail.MixerName);
    Console.WriteLine("Mixer Type: " + mixer.MixerType);
    Console.WriteLine("Mixer Line: " + line.Name);
}

Getting and Setting Rare Controls

Specific controls like Fadder, Microphone Boost, bass, treble, etc. can be accessed via the MixerControl object using ValueAsSigned, ValueAsUnsigned and ValueAsBoolean properties, but they are not implemented as standard properties because they don't belong to all controls.

x86 vs x64

Finally I got a core 2 duo and now I could compile the library under x86 and x64. At first I thought there won't be too much difference, but the big problem is that the IntPtr pointers are platform specific, so whereas a x86 takes 4 bytes, a x64 takes 8 bytes, that makes things really messy and there is no simple fix in some cases, for example in the following struct I could not find a way to make it work for x86 and x64 in C#. Looks like the .NET Framework is missing something to work with unions inside structs... I had to declare two structs and work with them separately.

Before

C#
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Auto)]
public struct MIXERCONTROLDETAILS
{
 [FieldOffset(0)] public UInt32  cbStruct;
 [FieldOffset(4)] public UInt32  dwControlID;
 [FieldOffset(8)] public UInt32  cChannels;
 /* Union start */
 [FieldOffset(12)] public IntPtr hwndOwner;
 [FieldOffset(12)] public UInt32 cMultipleItems;
 /* Union end */
 [FieldOffset(16)] public UInt32 cbDetails;
 [FieldOffset(20)] public IntPtr paDetails;
}

After

C#
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode, Pack = 2)]
public struct MIXERCONTROLDETAILS
{
 [FieldOffset(0)]  public UInt32 cbStruct;
 [FieldOffset(4)]  public UInt32 dwControlID;
 [FieldOffset(8)]  public UInt32 cChannels;
 /* Union start */
 [FieldOffset(12)] public IntPtr hwndOwner;
 [FieldOffset(12)] public UInt32 cMultipleItems;
 /* Union end */
 [FieldOffset(16)] public UInt32 cbDetails;
 [FieldOffset(20)] public IntPtr paDetails;
}
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode, Pack = 2)]
public struct MIXERCONTROLDETAILS64
{
 [FieldOffset(0)] public UInt32  cbStruct;
 [FieldOffset(4)] public UInt32  dwControlID;
 [FieldOffset(8)] public UInt32  cChannels;
 /* Union start */
 [FieldOffset(12)] public IntPtr hwndOwner;
 [FieldOffset(12)] public UInt32 cMultipleItems;
 /* Union end */
 [FieldOffset(20)] public UInt32 cbDetails;
 [FieldOffset(24)] public IntPtr paDetails;
}

I was hoping to declare a dynamic size for the FieldOffset and then I could have fixed the problem but it doesn't compile on .NET.

C#
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode, Pack = 2)]
public struct MIXERCONTROLDETAILS
{
 [FieldOffset(0)] public UInt32  cbStruct;
 [FieldOffset(4)] public UInt32  dwControlID;
 [FieldOffset(8)] public UInt32  cChannels;
 /* Union start */
 [FieldOffset(12)] public IntPtr hwndOwner;
 [FieldOffset(12)] public UInt32 cMultipleItems;
 /* Union end */
 [FieldOffset(12 + IntPtr.Size)] public UInt32 cbDetails;
 [FieldOffset(12 + IntPtr.Size + 4)] public IntPtr paDetails;
}

Notes

All the current functionality is tested and working, I tried not to include bugs, but they are there and I find them every once in a while. If you find bugs, I'll be grateful to get feedback to update the article.

For now I don't need anything else from the library, but if you think of something that is not included in it which could make it better, just let me know and I'll try to include it.

If you have a problem with it, feel free to write me an email.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Microsoft
United States United States
I started with programming about 19 years ago as a teenager, from my old Commodore moving to PC/Server environment Windows/UNIX SQLServer/Oracle doing gwBasic, QBasic, Turbo Pascal, Assembler, Turbo C, BC, Summer87, Clipper, Fox, SQL, C/C++, Pro*C, VB3/5/6, Java, and today loving C#.

Currently working as SDE on Failover Clustering team for Microsoft.

Passion for most programming languages and my kids Aidan&Nadia.

Comments and Discussions

 
GeneralWindows Mixer control in VC++ Pin
codem30-Jun-06 20:18
codem30-Jun-06 20:18 
GeneralRe: Windows Mixer control in VC++ Pin
Hung In17-Jul-06 23:47
Hung In17-Jul-06 23:47 
GeneralRe: Windows Mixer control in VC++ Pin
Super Garrison27-Feb-09 19:41
Super Garrison27-Feb-09 19:41 
GeneralA new FindByName method for AudioMixer.MixerLines Pin
sirovsky29-Apr-06 12:06
sirovsky29-Apr-06 12:06 
GeneralRe: A new FindByName method for AudioMixer.MixerLines Pin
ultraVBCoder25-Jun-06 17:45
ultraVBCoder25-Jun-06 17:45 
GeneralSetting audio device Pin
Conmen.Tsai27-Mar-06 23:02
Conmen.Tsai27-Mar-06 23:02 
AnswerRe: Setting audio device Pin
CastorTiu28-Mar-06 6:21
CastorTiu28-Mar-06 6:21 
GeneralRe: Setting audio device Pin
Conmen.Tsai28-Mar-06 19:52
Conmen.Tsai28-Mar-06 19:52 
Questionsimplified to master volume change? Pin
Rich Milburn10-Feb-06 5:41
Rich Milburn10-Feb-06 5:41 
GeneralMute Sound from other application Pin
Suntai7-Feb-06 1:56
Suntai7-Feb-06 1:56 
GeneralRe: Mute Sound from other application Pin
CastorTiu7-Feb-06 13:21
CastorTiu7-Feb-06 13:21 
QuestionPlayback - Recording - Other? Pin
Ageo54628-Jan-06 20:49
Ageo54628-Jan-06 20:49 
AnswerRe: Playback - Recording - Other? Pin
CastorTiu30-Jan-06 9:27
CastorTiu30-Jan-06 9:27 
GeneralRe: Playback - Recording - Other? Pin
Ageo54630-Jan-06 21:47
Ageo54630-Jan-06 21:47 
QuestionPlease, How to Change Microphone Boost? Pin
John Gouda16-Jan-06 3:13
John Gouda16-Jan-06 3:13 
AnswerRe: Please, How to Change Microphone Boost? Pin
CastorTiu16-Jan-06 11:07
CastorTiu16-Jan-06 11:07 
GeneralRe: Please, How to Change Microphone Boost? Pin
John Gouda18-Jan-06 5:43
John Gouda18-Jan-06 5:43 
Questionx64 Problem - Hoping for a solution Pin
renzska12-Jan-06 9:15
renzska12-Jan-06 9:15 
AnswerRe: x64 Problem - Hoping for a solution Pin
CastorTiu16-Jan-06 10:59
CastorTiu16-Jan-06 10:59 
GeneralRe: x64 Problem - Hoping for a solution Pin
renzska30-Jan-06 8:45
renzska30-Jan-06 8:45 
GeneralRe: x64 Problem - Hoping for a solution Pin
renzska30-Jan-06 9:09
renzska30-Jan-06 9:09 
GeneralRe: x64 Problem - Hoping for a solution Pin
MilesJ14-Apr-06 6:14
MilesJ14-Apr-06 6:14 
GeneralRe: x64 Problem - Hoping for a solution Pin
CastorTiu1-Oct-06 9:40
CastorTiu1-Oct-06 9:40 
QuestionMic Boost Pin
NSiggel3-Jan-06 14:48
NSiggel3-Jan-06 14:48 
AnswerRe: Mic Boost Pin
CastorTiu3-Jan-06 20:05
CastorTiu3-Jan-06 20:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.