Click here to Skip to main content
Licence CPOL
First Posted 23 Apr 2007
Views 244,589
Downloads 7,646
Bookmarked 89 times

Vista Core Audio API Master Volume Control

By Ray M. | 18 May 2010
A managed wrapper for accessing the Vista Core Audio API

1

2

3
6 votes, 11.8%
4
45 votes, 88.2%
5
4.79/5 - 51 votes
μ 4.79, σa 0.89 [?]
Screenshot - CoreAudioVolume.png

Introduction

Windows Vista features a completely new set of user-mode audio components that provide per application volume control. All legacy APIs such as the waveXxx and mixerXxx functions and DirectSound have been rebuilt on top of these new components so that without any code changes all 'old' applications support this new audio API. This is a great thing except when your application is reading or querying the master volume settings of the operating system because all of a sudden, you are no longer controlling the master volume of the operating system but only of your own application.

Core Audio API

The new API is COM based, and split into four sub APIs which roughly do the following:

  • MMDevice API - This API allows enumeration and instancing of the available audio devices in the system.
  • WASAPI - This API allows playback and recording of audio streams.
  • DeviceTopology API - This API allows access to hardware features such as bass, treble, and auto gain control.
  • EndpointVolume API - This API allows access to the Volume and Peak meters.

The MMDevice and EndpointVolume APIs are needed to control the master volume and mute settings, while the APIs themselves are a huge improvement since the legacy functions lack a nice managed interface, making working with them somehow an unpleasant experience in C#. Writing COM interop code is not for the novice and is error-prone, hence creating a wrapper to do all the plumbing for us seems a good idea.

Using the Code

You always start by creating the enumerator class, allowing you to find the device that you want, or just settle for the default device.

MMDeviceEnumerator devEnum = new MMDeviceEnumerator();
MMDevice defaultDevice = 
  devEnum.GetDefaultAudioEndpoint(EDataFlow.eRender, ERole.eMultimedia);

After you have a reference to an MMDevice object, toggling Mute is as easy as:

defaultDevice.AudioEndpointVolume.Mute = 
             !defaultDevice.AudioEndpointVolume.Mute;

Or getting the volume of the left channel:

Console.WriteLine("Left Volume : {0}", 
      defaultDevice.AudioEndpointVolume.Channels[0].VolumeLevelScalar);

Since the wrapper implements the complete EndpointVolume API, we can also get more advanced things such as peak meters for all channels:

Console.WriteLine("Master Peak : {0}", 
      defaultDevice.AudioMeterInformation.MasterPeakValue);
Console.WriteLine("Left   Peak : {0}", 
      defaultDevice.AudioMeterInformation.PeakValues[0]);
Console.WriteLine("Right  Peak : {0}", 
      defaultDevice.AudioMeterInformation.PeakValues[1]);

If you just want to be informed when somebody changes the volume settings, you can subscribe to the OnVolumeNotification event like this:

defaultDevice.AudioEndpointVolume.OnVolumeNotification += new 
    AudioEndpointVolumeNotificationDelegate(
       AudioEndpointVolume_OnVolumeNotification);
.
.
void AudioEndpointVolume_OnVolumeNotification(AudioVolumeNotificationData data)
{
    Console.WriteLine("New Volume {0}", data.MasterVolume);
    Console.WriteLine("Muted      {0}", data.Muted);
}

Points of interest

The documentation of the volume notification states it must be non-blocking. The client should never wait on a synchronization object during an event callback. Keep that in mind when write event handlers.

Although Vista does per-application audio settings, Microsoft has not open up the APIs to enumerate Sessions. So it will not be possible to make a sndvol.exe-like application.

Right now, only the MMDevice and EndpointVolume APIs are implemented; I hope to add the WASAPI in a future update.

History

  • 2007.04.23 - Initial article
  • 2010.05.17 - Updated source and sample

License

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

About the Author

Ray M.

Web Developer

Netherlands Netherlands

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberDr Bob12:27 22 Jan '12  
QuestionSimple Volume Control Pinmembergauravkale6:35 22 Dec '11  
Questioncore PinmemberSpricer23:21 16 Dec '11  
Questioncore PinmemberSpricer23:13 16 Dec '11  
AnswerRe: core PinmemberRay M.23:14 16 Dec '11  
Questioncore PinmemberSpricer23:05 16 Dec '11  
AnswerRe: core PinmemberRay M.23:11 16 Dec '11  
Questioncoreaudio api PinmemberSpricer15:52 16 Dec '11  
AnswerRe: coreaudio api PinmemberRay M.17:33 16 Dec '11  
QuestionDifference between VB and C#???? [modified] PinmemberLeo de Blank7:06 12 Sep '11  
AnswerRe: Difference between VB and C#???? PinmemberRay M.7:19 12 Sep '11  
GeneralRe: Difference between VB and C#???? PinmemberLeo de Blank10:17 12 Sep '11  
GeneralRe: Difference between VB and C#???? PinmemberRay M.10:35 12 Sep '11  
GeneralRe: Difference between VB and C#???? PinmemberLeo de Blank10:39 12 Sep '11  
QuestionHow can I change left/right channel volume? PinmemberJanJankovsky1:23 11 Sep '11  
GeneralMy vote of 5 PinmemberRecep GUVEN8:41 18 Aug '11  
GeneralMy vote of 5 PinmemberMember 809676011:28 19 Jul '11  
QuestionStrangeness on Dell Laptop Pinmemberbilliam9048:43 13 Jul '11  
GeneralDeviceTopology PinmemberScott Meesseman12:48 16 Jun '11  
GeneralMemory Leak in AudioEndpointVolume PinmemberMember 766258011:56 14 Mar '11  
Generalrecording x playback Pinmembercadselfs20:07 10 Mar '11  
GeneralCOMException Pinmemberjpcodeproject204:53 31 Jan '11  
GeneralRe: COMException PinmemberRay M.4:57 31 Jan '11  
GeneralRe: COMException Pinmemberjpcodeproject2012:33 31 Jan '11  
GeneralRe: COMException PinmemberRay M.12:38 31 Jan '11  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120206.1 | Last Updated 18 May 2010
Article Copyright 2007 by Ray M.
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid