Click here to Skip to main content
15,878,959 members
Articles / Programming Languages / C#
Article

A low-level audio player in C#

Rate me:
Please Sign up or sign in to vote.
4.87/5 (94 votes)
27 Aug 20033 min read 954.6K   16.5K   240   171
This article describes a sample application that uses the waveout API in C#.

Sample Image - cswavplay.gif

Introduction

It is no news that the .NET framework does not include any classes for dealing with sound. Some people have worked around this limitation by wrapping high-level system components, such as Windows Media Player or DirectShow, into .NET-friendly libraries. However, most of these libraries are designed in such a way that they cannot be used to manipulate audio samples on the fly because they do not give you access to the actual sound data.

When developing applications that deal with such low-level issues, the most commonly used technologies are DirectSound and the waveout API. This article describes a sample application that uses the waveout API in C# through Interop to play a WAV file in a continuous loop.

Using the code

Most of the work in the sample application is carried out by two classes: WaveStream and WaveOutPlayer.

The WaveStream class extends System.IO.Stream and implements the necessary code to read audio samples from a WAV file. The constructor reads the file header and extracts all the relevant information including the actual length of the stream and the format of the audio samples, which is exposed through the Format property.

One important thing to note is that seeking operations in the WaveStream class are relative to the sound data stream. This way you don't have to care about the length of the header or about those extra bytes at the end of the stream that don't belong to the audio data chunk. Seeking to 0 will cause the next read operation to start at the beginning of the audio data.

The WaveOutPlayer class is where the most interesting things happen. For the sake of simplicity, the interface of this class has been reduced to the strict minimum. There are no Start, Stop or Pause methods. Creating an instance of WaveOutPlayer will cause the system to start streaming immediately.

Let's have a look at the code that creates the WaveOutPlayer instance. As you can see, the constructor takes five parameters:

C#
private void Play()
{
    Stop();
    if (m_AudioStream != null)
    {
        m_AudioStream.Position = 0;
        m_Player = new WaveLib.WaveOutPlayer(-1, m_Format, 16384, 3, 
            new WaveLib.BufferFillEventHandler(Filler));
    }
}

The first parameter is the ID of the wave device that you want to use. The value -1 represents the default system device, but if your system has more than one sound card, then you can pass any number from 0 to the number of installed sound cards minus one to select a particular device.

The second parameter is the format of the audio samples. In this example, the format is taken directly from the wave stream.

The third and forth parameters are the size of the internal wave buffers and the number of buffers to allocate. You should set these to reasonable values. Smaller buffers will give you less latency, but the audio may stutter if your computer is not fast enough.

The fifth and last parameter is a delegate that will be called periodically as internal audio buffers finish playing, so that you can feed them with new sound data. In the sample application we just read audio data from the wave stream, like this:

C#
private void Filler(IntPtr data, int size)
{
    byte[] b = new byte[size];
    if (m_AudioStream != null)
    {
        int pos = 0;
        while (pos < size)
        {
            int toget = size - pos;
            int got = m_AudioStream.Read(b, pos, toget);
            if (got < toget)
                m_AudioStream.Position = 0; // loop if the file ends
            pos += got;
        }
    }
    else
    {
        for (int i = 0; i < b.Length; i++)
            b[i] = 0;
    }
    System.Runtime.InteropServices.Marshal.Copy(b, 0, data, size);
}

Please note that this delegate may be called from any internal thread created by the WaveOutPlayer object, so if you want to call into your Windows Forms objects you should use the Invoke mechanism.

To stop playing, just call Dispose on the player object, like this:

C#
private void Stop()
{
    if (m_Player != null)
    try
    {
        m_Player.Dispose();
    }
    finally
    {
        m_Player = null;
    }
}

Conclusion

This sample demonstrates how to use the waveout API from C#. This is useful for applications that require more control on the audio stream compared to what other higher level libraries offer. Typical examples are applications that generate or modify audio samples on the fly, such as digital effect processors.

A modified version of this sample that implements support for DirectX plug-ins is included in the Adapt-X SDK, which is a commercial product that can be found at www.chronotron.com.

History

Update 28 Aug 03 - Fixed a bug related to reading the WAV file header.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Luxembourg Luxembourg
Ianier Munoz lives in France and works as a senior consultant and analyst for an international consulting firm. His specialty is in multimedia applications, and he has authored some popular software, such as American DJ's Pro-Mix, Chronotron and Adapt-X.

Comments and Discussions

 
GeneralRe: Magic number Pin
Ianier Munoz30-Apr-07 19:01
Ianier Munoz30-Apr-07 19:01 
GeneralRe: Magic number Pin
k06a8-Apr-10 10:36
k06a8-Apr-10 10:36 
Generalnoise filterring system Pin
hassan053116-Mar-07 23:29
hassan053116-Mar-07 23:29 
QuestionQBasic Music Support? Pin
Vasudevan Deepak Kumar12-Dec-06 3:16
Vasudevan Deepak Kumar12-Dec-06 3:16 
GeneralA question plz Pin
AdyXP29-Oct-06 5:27
AdyXP29-Oct-06 5:27 
QuestionWaveform (Audio Signal) Pin
Erakis22-Jul-06 12:16
Erakis22-Jul-06 12:16 
AnswerRe: Waveform (Audio Signal) Pin
eelioss14-May-07 5:47
eelioss14-May-07 5:47 
AnswerThe way for getting the current play position Pin
eelioss9-Jun-07 8:49
eelioss9-Jun-07 8:49 
You have to add this lines in the WaveNative.cs

[DllImport(mmdll)]
public static extern int waveOutGetPosition(IntPtr hWaveOut, ref MMTIME pmmt, int uSize);

And to define this struct in the same class:

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct MMTIME
{
public int wType;
public int u;
public int x;
}

(I tried to made it of this way http://msdn2.microsoft.com/en-us/library/ms712191.aspx[^] but I wasn't able of create the union. Someone could help me?)

And the following constants:
public const int TIME_MS = 0x0001; // time in milliseconds
public const int TIME_SAMPLES = 0x0002; // number of wave samples public const int TIME_BYTES = 0x0004; // current byte offset
...
So, when you want to get de current position you have to write this:

MMTIME a = new MMTIME();
a.wType = WaveNative.TIME_BYTES;
if (m_WaveOut!=IntPtr.Zero)
WaveNative.waveOutGetPosition(m_WaveOut,ref a, Marshal.SizeOf(a));

the value "a.u" containt the current position in bytes.

You could to create a property in WaveOutPlayer called Position:

public long Position
{
get
{
MMTIME a = new MMTIME();
a.wType = WaveNative.TIME_BYTES;
if (m_WaveOut!=IntPtr.Zero)
WaveNative.waveOutGetPosition(m_WaveOut,ref a, Marshal.SizeOf(a));
return a.u;
}
}
GeneralRe: The way for getting the current play position Pin
eelioss9-Jun-07 9:48
eelioss9-Jun-07 9:48 
GeneralIt's an advertisement for a commercial product. Pin
tekHedd4-Jun-06 12:41
tekHedd4-Jun-06 12:41 
GeneralRe: It's an advertisement for a commercial product. - not really Pin
graymon18-Aug-06 5:03
graymon18-Aug-06 5:03 
GeneralRe: It's an advertisement for a commercial product. - not really Pin
Ianier Munoz30-Apr-07 19:18
Ianier Munoz30-Apr-07 19:18 
GeneralRe: It's an advertisement for a commercial product. Pin
mlavenne13-Jan-07 18:06
mlavenne13-Jan-07 18:06 
GeneralRe: It's an advertisement for a commercial product. Pin
Ianier Munoz30-Apr-07 19:11
Ianier Munoz30-Apr-07 19:11 
QuestionCD locked Pin
Lutosław25-May-06 6:04
Lutosław25-May-06 6:04 
Generalcan't play byte array Pin
gongozozzozorilla22-Apr-06 1:08
gongozozzozorilla22-Apr-06 1:08 
GeneralRe: can't play byte array Pin
gongozozzozorilla23-Apr-06 23:26
gongozozzozorilla23-Apr-06 23:26 
GeneralWaveFormatExtensible 24 bits 48KHz problem with full-duplex audio player Pin
barreJ2-Mar-06 8:30
barreJ2-Mar-06 8:30 
GeneralRe: WaveFormatExtensible 24 bits 48KHz problem with full-duplex audio player Pin
Ianier Munoz24-Mar-06 17:17
Ianier Munoz24-Mar-06 17:17 
GeneralDocumentation of Full duplex project Pin
Mubii6-Jan-06 23:08
Mubii6-Jan-06 23:08 
GeneralMemory leak Pin
makmak9-Nov-05 18:18
makmak9-Nov-05 18:18 
GeneralRe: Memory leak Pin
Ianier Munoz24-Mar-06 17:28
Ianier Munoz24-Mar-06 17:28 
GeneralRe: Memory leak Pin
krh3o1-Oct-06 10:52
krh3o1-Oct-06 10:52 
GeneralWaveform audio interface component for .NET Pin
AdamSlosarski4-Nov-05 0:39
AdamSlosarski4-Nov-05 0:39 
GeneralImproving Performance Pin
venugopal.10@indiatimes.com18-Oct-05 0:27
venugopal.10@indiatimes.com18-Oct-05 0:27 

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.