Click here to Skip to main content
6,596,602 members and growing! (18,784 online)
Email Password   helpLost your password?
Multimedia » DirectX » General     Intermediate License: The MIT License

VolumeMeter (Managed DirectX)

By Jacob Klint

A flexible Windows Forms control for live monitoring of volume levels from an audio capture source.
C# 1.0, Windows, .NETVS.NET2003, Dev
Posted:31 Jul 2006
Updated:10 Aug 2006
Views:91,348
Bookmarked:53 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
11 votes for this article.
Popularity: 4.42 Rating: 4.24 out of 5
1 vote, 9.1%
1

2
2 votes, 18.2%
3
2 votes, 18.2%
4
6 votes, 54.5%
5

Sample Image - volumemeter.jpg

Introduction

This project is a live volume meter control for monitoring audio levels from a sound card. It is written entirely in C#, and uses Microsoft's Managed DirectX (June release). You can drag-and-drop the control into any Windows Forms application. You may select the input, and tweak the appearance of the animation through various parameters.

The idea behind this project is to maintain a very short buffer of audio and constantly record into it. The control is on a timer, and periodically queries the buffer to see what volume level the most recent sample has, and then sets a progress bar's value accordingly.

There are commercial controls that achieve the same purpose, but I wanted to dive in and get my hands dirty with DirectX (albeit the managed version :) ). I hope others will benefit from this work.

Using the code

This project consists of four DLLs: volumemeter.dll, progressbargradient.dll, Microsoft.DirectX.dll, and Microsoft.DirectX.DirectSound.dll. To use this control in a project, right-click in the toolbox, select "Choose Controls", and browse for volumemeter.dll. You don't need to manually reference any of the other DLLs, but they do need to be present. The control should now be present in your toolbox, so drag it onto a form to add it to your project. The control is active even while in the Visual Studio designer, so you can see it in action without having to run the project.

The following methods are available to you:

  • Start() - starts the animation, provided an audio device has been set through SelectedDeviceIndex or SelectedDeviceName.
  • Stop() - halts the animation.

The following properties are available to you:

  • AutoStart - if true, whenever you change the audio source (through SelectedDeviceIndex or SelectedDeviceName) and the meter animation is currently turned off, the control will start the animation.
  • BorderStyle - sets the appearance of the border around each progress bar.
  • DeviceNames - a list of the audio devices present in the system.
  • Orientation - sets the volume bars to run horizontally or vertically.
  • SelectedDeviceIndex - gets or sets the index of the current audio device according to the list in DeviceNames. If you enter an index out of bounds of the DeviceNames list, the meter stops running.
  • SelectedDeviceName - gets or sets the name of the current audio device according to the list in DeviceNames If you enter a name which is not contained in the DeviceNames list, the meter stops running. Note that while you can select a device through the control, you must adjust the recording properties of that device through Windows Volume Control or some other program.
  • VisualizerOn - set to true to start the animation, false to stop. You can achieve the same results with the Start() and Stop(), but this property is useful for toggling without having to check the current state first.

    Altering the following properties is not necessary for operating the control, but this information is here just for reference. The defaults are fine for most projects.

  • SampleDelay - how often the control queries the capture buffer to get the volume, measured in milliseconds. Values between 80 and 140 generally give good results, default is 100.
  • FrameDelay - the time in milliseconds between animation frames, measured in milliseconds. Values between 10 and 40 generally give good results, default is 10. This value must be less than or equal to SampleDelay.

    The last two values work together to provide a smooth animation. SampleDelay dictates how often a real value is read from the sound card, but in-between those capture points, the control interpolates frames to keep the animation running smoothly. This gives much better results than just polling the audio card and updating the progress bar's value (which, by the way, you can simulate by setting FrameDelay = SampleDelay).

The following events are available to you:

  • VolumeChanged fires whenever a new sample is read that differs from the previous one. The event uses a VolumeChangedEventArgs class to send information about the old and new volume levels.

Points of Interest

This control uses GDI+ to run all the animation, so if you size the control to full-screen, you will most likely see a very high CPU usage. You can lower that usage by increasing the SampleDelay and/or FrameDelay values. Notice, however, that the animation runs in a separate thread that is set to have a very low priority, so this control will not cause your project to hang.

The progress bars in this project are custom controls I built. They let you use a gradient fill rather than a plain old solid color. If you want to use them independent of this project, just add the "ProgressBarGradient.dll" to your toolbox. I might post the ProgressBarGradient project online if/when I get around to it.

If you're interested in how to use managed DirectX, here's the code for starting the audio capture buffer:

// initialize the capture buffer and start the animation thread

Capture cap = new Capture(audioDevices[deviceIndex].DriverGuid);
CaptureBufferDescription desc = new CaptureBufferDescription();

WaveFormat wf = new WaveFormat();
wf.BitsPerSample = 16;
wf.SamplesPerSecond = 44100;
wf.Channels = 2;
wf.BlockAlign = (short)(wf.Channels * wf.BitsPerSample / 8);
wf.AverageBytesPerSecond = wf.BlockAlign * wf.SamplesPerSecond;
wf.FormatTag = WaveFormatTag.Pcm;


desc.Format = wf;
desc.BufferBytes = SAMPLES * wf.BlockAlign;
    
buffer = new Microsoft.DirectX.DirectSound.CaptureBuffer(desc, cap);
buffer.Start(true);

liveVolumeThread = new Thread(new ThreadStart(updateProgress));    
liveVolumeThread.Priority = ThreadPriority.Lowest;
liveVolumeThread.Start();

And here's how you read values from the buffer:

private const int SAMPLES = 8;
private static int[] SAMPLE_FORMAT_ARRAY = {SAMPLES, 2, 1};
...

Array samples = buffer.Read(0, typeof(Int16), LockFlag.FromWriteCursor, 
                            SAMPLE_FORMAT_ARRAY);

Etc.

I have tested and used this control on only a few different machines, so no guarantees about how well it will run for you. The usual disclaimers apply - run this code at your own risk, I am not responsible if you lose your firstborn because of some bug in the code :). That said, I have not encountered any problems using this control in my own projects. Feel free to contact me with any bugs or suggestions. Enjoy!

History

  • v1.0 - Released 7/27/2006.

License

This article, along with any associated source code and files, is licensed under The MIT License

About the Author

Jacob Klint


Member
BS in Information and Computer Science (specialization in Computer Systems) from the University of California, Irvine 2006

Now working at The Paul Merage School of Business at UC Irvine.
Occupation: Web Developer
Location: United States United States

Other popular DirectX articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 74 (Total in Forum: 74) (Refresh)FirstPrevNext
GeneralMy vote of 1 Pinmemberdeiong16:06 24 Apr '09  
Generali can't dounload the file from the link Pinmemberronanran200021:33 22 Feb '09  
AnswerDid some updates... PinmemberThomas Gorgolione17:25 17 Jan '09  
QuestionHow to use lib 'VolumeMeter' in VB2005 Pinmembertum111115:50 1 Jan '09  
GeneralYour project was incredibly helpful Pinmemberreason914:54 18 Dec '08  
Generalerror Pinmembere_xia22:06 5 Aug '08  
QuestionError when trying to drag the control onto a form PinmembereMatt699:52 12 Jul '08  
GeneralIt's urgent! PinmembereMatt690:54 17 Jul '08  
GeneralRe: It's urgent! PinmemberJacob Klint6:52 17 Jul '08  
GeneralRe: It's urgent! PinmembereMatt698:03 18 Jul '08  
QuestionWhen closing form it shows an error! Pinmembersuresh suthar3:37 3 Nov '07  
QuestionRe: When closing form it shows an error! PinmemberIbrahim Dwaikat13:12 19 Nov '07  
Generalget mic input level as trigger Pinmemberchrishaerr0:08 11 Aug '07  
GeneralRe: get mic input level as trigger PinmemberJacob Klint14:13 14 Aug '07  
Questionsource doesn't work Pinmemberchrishaerr0:07 11 Aug '07  
AnswerRe: source doesn't work PinmemberJacob Klint14:09 14 Aug '07  
Generalselecting between mic input and line input PinmemberDavid Every21:37 18 Jun '07  
GeneralRe: selecting between mic input and line input PinmemberJacob Klint21:42 18 Jun '07  
GeneralHow to get the demo-source code Pinmemberh4xx0rz4:51 5 May '07  
GeneralNEW VERSION - POST FEATURE REQUESTS HERE PinmemberJacob Klint20:03 17 Apr '07  
GeneralRe: NEW VERSION - POST FEATURE REQUESTS HERE PinmemberUltraWhack7:00 24 Apr '07  
GeneralFox Pro Pinmemberrobertovo13:16 8 Apr '07  
GeneralActivex Pinmemberrobertovo13:13 8 Apr '07  
GeneralThank you PinmemberjonzieBoy0:36 5 Apr '07  
Questionsensitive? Pinmembermy_name_is_jabba7:26 2 Apr '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 10 Aug 2006
Editor: Smitha Vijayan
Copyright 2006 by Jacob Klint
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project