Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / Win32
Article

Play Audio Files with DirectSound and Display its Spectrum in Real Time - Part 3

Rate me:
Please Sign up or sign in to vote.
4.93/5 (21 votes)
24 Dec 2008CPOL3 min read 272.9K   17.7K   86   40
An article to show how to play audio file with DirectSound and display its spectrum in real time accurately

Introduction

This article is an improved edition of my article: Play Wave Files with DirectSound and Display its Spectrum in Real Time - Part 2. In this article, I add MP3, WMA, WAV, and OGG Vorbis support, which need Windows Media 9 or higher support, and I do some extra work to reorganize code. Here have two articles were posted on Code Project before this article, they are listed below.

Input

The input stream includes file, CD, microphone and so on. In this article, the input stream is audio file. So, I define CInput as base classes for all input types, and have some pure virtual functions defined in this class. The function GetDataInternal must be implemented by derived class, which reads audio data from audio file and fills it to a buffer.

In this article, I use WMF (Windows Media Format) decodes WMA format. The main interfaces that were used are IWMSyncReader, INSSBuffer, IWMHeaderInfo. The IWMSyncReader interface provides the ability to read WMA files using synchronous calls. The INSSBuffer interface is the basic interface of a buffer object. A buffer object is a wrapper around a memory buffer. The methods exposed by this interface are used to manipulate the buffer. The IWMHeaderInfo interface sets and retrieves information in the header section of an ASF file. You can manipulate three types of header information by using the methods of this interface: metadata attributes, markers, and script commands. You can read MSDN for more information.

The libraries like libmad, libogg and libvorbis are all integrated in this application. And I defined four classes for MP3, WMA, WAV and OGG Vorbis files reading, these are CWMIn, CWaveIn, CMP3In and CVorbisIn. For more details, please read the code.

The application decodes mp3 files with libmad, it does not depend on WMF (Windows Media Format) anymore, this library is so cool, I like it. :)

Output

This component already implemented in Play Wave Files with DirectSound and Display its Spectrum in Real Time - Part 2 uses DirectSound for output. So, if you have some questions about it, you should read it first. You can also search CodeProject with the keyword DirectSound; you will get many articles about it.

The Expectation

I would always feel that the spectrum displayed in the window is not right, especially when playing some sound files. So, I hope I can get help on that, and thoroughly deal with it.

Bugs Fixes

There have some bugs that exist in the article Play Wave Files with DirectSound and Display its Spectrum in Real Time - Part 2. I have done a lot of work to fix it. There may exist unknown bugs, which require time to find. If you find any, let me know. Thanks.

History

  • 23th December, 2008: New version is posted, which supports mp3, wav, wma, and ogg. The another important thing is what decodes mp3 files with libmad without depends on WMF (Windows Media Format) anymore.
  • 12th December, 2008: Initial post

License

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


Written By
Software Developer none
China China
To be, or not to be, this is question. That's are all depend on your decision. What do you think?

Comments and Discussions

 
GeneralRe: Comments about spectrum display Pin
hdw1912-Feb-09 20:46
hdw1912-Feb-09 20:46 
GeneralRe: Comments about spectrum display Pin
jackyxinli3-Feb-09 14:52
jackyxinli3-Feb-09 14:52 
GeneralRe: Comments about spectrum display Pin
hdw1913-Feb-09 17:22
hdw1913-Feb-09 17:22 
GeneralRe: Comments about spectrum display Pin
jackyxinli4-Feb-09 13:29
jackyxinli4-Feb-09 13:29 
GeneralRe: Comments about spectrum display Pin
lao_o20-Feb-09 14:51
lao_o20-Feb-09 14:51 
GeneralRe: Comments about spectrum display Pin
jackyxinli22-Feb-09 18:47
jackyxinli22-Feb-09 18:47 
GeneralRe: Comments about spectrum display Pin
lao_o15-Mar-09 19:25
lao_o15-Mar-09 19:25 
Generaladd equalizer Pin
hinuk18-Dec-08 16:34
hinuk18-Dec-08 16:34 
Good job!
It will be great, if you add the equalizer.
GeneralRe: add equalizer Pin
jackyxinli20-Dec-08 20:46
jackyxinli20-Dec-08 20:46 
GeneralWorks very well, thanks! Pin
Tage Lejon14-Dec-08 10:56
Tage Lejon14-Dec-08 10:56 
GeneralRe: Works very well, thanks! Pin
jackyxinli14-Dec-08 13:24
jackyxinli14-Dec-08 13:24 

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.