Skip to main content
Email Password   helpLost your password?
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

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralHow to make the IFFT? Pin
afmf
6:33 3 Nov '09  
GeneralHow to reduce the noise? Pin
GeoNav
2:55 31 Oct '09  
Generallineout audio Pin
GeoNav
0:10 29 Oct '09  
QuestionChange Source to wav file Pin
GeoNav
22:36 21 Oct '09  
AnswerRe: Change Source to wav file Pin
Jeff Morton
12:23 22 Oct '09  
GeneralRe: Change Source to wav file Pin
GeoNav
19:35 26 Oct '09  
GeneralRe: Change Source to wav file Pin
afmf
6:38 3 Nov '09  
GeneralError in Program Pin
Piligrim2007
12:04 20 Oct '09  
GeneralRe: Error in Program Pin
Jeff Morton
12:23 22 Oct '09  
GeneralRe: Error in Program Pin
Piligrim2007
1:52 24 Oct '09  
QuestionCan't run the program in Vista 64bit Pin
Yasir Salih Osman
23:36 7 Aug '09  
AnswerRe: Can't run the program in Vista 64bit Pin
Fullmetal99012
8:20 11 Sep '09  
Generalhow can i do it reverse? [modified] Pin
mojimoj
22:05 2 Aug '09  
GeneralExcellent piece of work Jeff Pin
maxima120
13:17 4 Jul '09  
GeneralRe: Excellent piece of work Jeff Pin
Jeff Morton
6:46 5 Jul '09  
GeneralThrows exception when using Freq < 11025 Hz Pin
k^s
8:07 10 Jun '09  
QuestionHow do I get it to work? Pin
Maiden Computer Company
11:48 22 Apr '09  
AnswerRe: How do I get it to work? Pin
Jeff Morton
11:51 22 Apr '09  
GeneralError in Frequency domain? Pin
Elysium
12:17 8 Mar '09  
GeneralRe: Error in Frequency domain? Pin
Jeff Morton
12:41 8 Mar '09  
GeneralRe: Error in Frequency domain? Pin
Elysium
23:02 8 Mar '09  
QuestionQuestion on how to get the frequencies Pin
kyanmark_johnwill
14:52 2 Mar '09  
AnswerRe: Question on how to get the frequencies Pin
hazeljane
4:49 13 Mar '09  
GeneralRe: Question on how to get the frequencies Pin
Jeff Morton
11:34 13 Mar '09  
GeneralRe: Question on how to get the frequencies Pin
afmf
2:54 23 Oct '09  


Last Updated 27 Jan 2008 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009