Click here to Skip to main content
Licence GPL3
First Posted 16 Jan 2008
Views 122,498
Downloads 6,414
Bookmarked 162 times

Sound Activated Recorder with Spectrogram in C#

By Jeff Morton | 27 Jan 2008
Audio event processing with visual display

1

2
3 votes, 8.3%
3
4 votes, 11.1%
4
29 votes, 80.6%
5
4.89/5 - 36 votes
3 removed
μ 4.74, σa 1.09 [?]
SoundCatcher

Introduction

This project demonstrates an implementation of the waterfall spectrogram and use of statistical data to trigger events in near real-time. This code is an elaboration of my previous submission (SoundViewer). This demonstration utilizes the Wave classes developed by Ianier Munoz.

Using the Code

Audio is supplied by the default input device which is typically the microphone. Events are triggered when audio amplitude exceeds the desired threshold value, which can be set under Options on the menu bar. To make this more useful, I've added functionality to save the stream to disk which results in a nice sound activated recorder.

Points of Interest

In order to draw the spectrogram fast enough to allow for near real-time operation, I needed to write directly to memory using unsafe code.

// lock image
PixelFormat format = canvas.PixelFormat;
BitmapData data = 
    canvas.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadOnly, format);
int stride = data.Stride;
int offset = stride - width * 4;

// draw image
try
{
  unsafe
  {
    byte* pixel = (byte*)data.Scan0.ToPointer();
    // for each column
    for (int y = 0; y <= height; y++)
    {
      if (y < _fftLeftSpect.Count)
      {
        // for each row
        for (int x = 0; x < width; x++, pixel += 4)
        {
          double amplitude = ((double[])_fftLeftSpect[_fftLeftSpect.Count - y - 1])
                [(int)(((double)(_fftLeft.Length) / (double)(width)) * x)];
          double color = GetColor(min, max, range, amplitude);
          pixel[0] = (byte)0;
          pixel[1] = (byte)color;
          pixel[2] = (byte)0;
          pixel[3] = (byte)255;
        }
        pixel += offset;
      }
    }
  }
}
catch (Exception ex)
{
  Console.WriteLine(ex.ToString());
}

// unlock image
canvas.UnlockBits(data);

I noticed that the results vary wildly depending on the hardware and associated drivers being used.

Some things I'd like to experiment with further when I get the time:

  1. Use of frequency domain to produce "motion" detector equivalent
  2. Use of spectrogram in sound identification
  3. Improving performance/robustness

History

  • 01/16/2008: Created

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Jeff Morton

Systems / Hardware Administrator

United States United States

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
Questiondraw spectrogram with a wav file. Pinmemberjacky_zz19:27 4 Feb '12  
QuestionLocking up when closing if there is activity [modified] Pinmemberprogrammerdon6:46 17 Jan '12  
QuestionObject reference not set to an instance of an object Pinmemberdeepak thomas5:01 5 Dec '11  
AnswerRe: Object reference not set to an instance of an object Pinmemberdeepak thomas7:57 5 Dec '11  
QuestionSound Catcher freezes on Exit in Win 7 32-bit PinmemberMember 836994912:13 11 Nov '11  
AnswerRe: Sound Catcher freezes on Exit in Win 7 32-bit PinmemberTimothy Ayodele2:54 14 Jan '12  
QuestionPlease how can i make the recording every 1 hour PinmemberTimothy Ayodele8:26 2 Nov '11  
QuestionVote 5 Pinmemberserega4671:41 5 Aug '11  
GeneralIn VB.NET Pinmemberemicroxxx3:55 23 May '11  
GeneralMy vote of 5 Pingroupabdillahi23:23 26 Apr '11  
QuestionHow can i save output to .txt ? Pinmemberstefan_brato17:48 27 Nov '10  
QuestionSpectrogram Disappears PinmemberGeoNav19:26 12 Jul '10  
QuestionGPLv2 PinmemberMember 427711911:00 7 Jul '10  
QuestionHow to generate wave-form if we have the byte-array with us. PinmemberMark020:06 12 Mar '10  
GeneralIntegration Time PinmemberGeoNav5:17 17 Feb '10  
GeneralSound Equalizer PinmemberBazKhan20:34 25 Jan '10  
GeneralAmplitude -sound loudness Pinmemberginwithlime5:10 9 Jan '10  
GeneralRe: Amplitude -sound loudness PinmemberJeff Morton6:36 9 Jan '10  
QuestionHow to stop the thread if a invoke methode gets called in the DataArrived Event PinmemberMichael Muehllehner4:57 7 Dec '09  
QuestionHow to make the IFFT? Pinmemberafmf6:33 3 Nov '09  
AnswerRe: How to make the IFFT? PinmemberRahdu10:35 23 Sep '10  
QuestionHow to reduce the noise? PinmemberGeoNav2:55 31 Oct '09  
Generallineout audio PinmemberGeoNav0:10 29 Oct '09  
QuestionChange Source to wav file PinmemberGeoNav22:36 21 Oct '09  
AnswerRe: Change Source to wav file PinmemberJeff Morton12:23 22 Oct '09  

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
Web02 | 2.5.120209.1 | Last Updated 28 Jan 2008
Article Copyright 2008 by Jeff Morton
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid