Click here to Skip to main content
Licence 
First Posted 21 Aug 2003
Views 98,747
Bookmarked 77 times

ShowWaveForm

By | 21 Aug 2003 | Article
A C# class for working with .WAV files

Sample Image - showwaveform.jpg

Introduction

ShowWaveForm is based off of a c++ class written by Alexander Beletsky called CWaveFile. This is a port to C#, with some added features. A small .wav file is included in the demo project .zip file for testing.

WaveFile.cs

WaveFile.cs is the main class. It reads & parses the .WAV file headers. When passed a PaintEventArgs (typically from an OnPaint event), it will draw the waveform. The class also allows for zooming in/out on the waveform.

Usage

Using the class is very simple. Here is the sample project file open menu handler:

private void fileOpen_Click(object sender, System.EventArgs e)
{
  OpenFileDialog fileDlg = new OpenFileDialog();

  if ( fileDlg.ShowDialog() == DialogResult.OK )
  {
     wave = new WaveFile( fileDlg.FileName );
     sbpMainPanel.Text = "Reading .WAV file...";
     wave.Read( );
     sbpMainPanel.Text = "Finished Reading .WAV file...";
     m_DrawWave = true;
     Refresh( );
  }
}

And here is the Paint handler of the demo project:

private void Form1_Paint( object sender, 
              System.Windows.Forms.PaintEventArgs e
            )
{
  Pen pen = new Pen( ForeColor );
  if ( m_DrawWave )<BR>  {
     sbpMainPanel.Text = "Drawing .WAV file...";
     wave.Draw( e, pen );
     sbpMainPanel.Text = "Finished drawing .WAV file...";
  }
}

The last interesting thing in the demo project is the MouseWheel handler, which controls the zooming of the waveform:

protected override void OnMouseWheel( MouseEventArgs mea )
{
 if ( mea.Delta * SystemInformation.MouseWheelScrollLines / 120 > 0 )
  wave.ZoomIn( );
 else
  wave.ZoomOut( );

 Refresh( );

}

Questions/Discussion

This is my first attempt at programming in C#/.NET. So please comment on every thing in this code! Specifically I have questions about:

  • Drawing of waveform is very slow for large files, perhaps because of using PageScale?
  • How to catch some of the errors that can occur in zooming in/out too far
  • Drawing of stereo waveforms

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

About the Author

pj4533

Web Developer

United States United States

Member

PJ currently works for Avid Technology, and lives in Cambridge, MA. When he isn't coding, you can find him collecting old dusty funk & soul records.

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 5/5 ! ReadMe ! Pinmemberf_numb3r21:44 12 Jun '07  
GeneralShow waveform Result Vs Matlab Waveform Pinmembergsrivastav0:41 7 May '07  
GeneralCreate Image Pinsussjus_10116:58 1 May '05  
GeneralRe: Create Image PinmemberChristian Graus17:12 1 May '05  
GeneralRe: Create Image Pinsussjus_10117:14 1 May '05  
GeneralRe: Create Image PinmemberChristian Graus17:17 1 May '05  
GeneralRe: Create Image Pinsussjus_10113:14 3 May '05  
GeneralRe: Create Image PinmemberChristian Graus13:21 3 May '05  
GeneralRe: Create Image Pinsussjus_10113:47 3 May '05  
GeneralRe: Create Image PinmemberMember 416178012:16 1 May '08  
QuestionDataID invalid?? Pinmembercbranje1:55 11 Sep '04  
AnswerRe: DataID invalid?? Pinmembermauricerulez1:51 8 Nov '06  
GeneralRe: DataID invalid?? Pinmembersandu200423:34 1 Jul '07  
GeneralZoom Problem Pinmemberkrishnadevank20:15 20 Jun '04  
QuestionLink/Explanation? PinmemberJeremy Kimball19:41 26 Aug '03  
AnswerRe: Link/Explanation? Pinmemberpj45337:26 27 Aug '03  
GeneralRe: Link/Explanation? Pinmemberzgraf14:42 11 Dec '05  
QuestionRe: DOUBT PinmemberFlavioAR14:14 16 Aug '07  
HI,
MY NAME IS FLÁVIO. I AM OF THE BRAZIL AND I AM INITIATING IN THE DEVELOPMENT AREA. IT WOULD LIKE TO USE ITS COMPONENT “WAVEEDITOR” IN A SOFTWARE PROJECT, HOWEVER, I AM WITH DIFFICULTIES TO LOAD CURVE GRAFICA OF UMA MP3 IN THE COMPONENT. YOU IT COULD HELP ME?
IT FORGIVES I BOTHER IT AND ANY ERROR OF LANGUAGE, THEREFORE, I DO NOT SAY ENGLISH.
THANK YOU
FLÁVIO
 
Confused | :confused:

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
Web04 | 2.5.120529.1 | Last Updated 22 Aug 2003
Article Copyright 2003 by pj4533
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid