Click here to Skip to main content
Licence 
First Posted 6 Sep 2003
Views 131,388
Bookmarked 82 times

Audio DSP with C#

By | 6 Sep 2003 | Article
A .NET class library for audio processing.

Sample Image - audio_process.jpg

Introduction

Garbe.Sound is a small .NET library for audio processing. The principal idea is to give programmers with a RAD environment for developing audio filters. With the basic classes, it comes with a few filters already implemented, like:

  • Gain Filter
  • Delay Filter
  • LowPass Filter
  • Mixer
  • Reverberation
  • Head Related Transfer Function (HRTF)
  • Read and Write Wave Files (just mono yet)

The library is still a Beta 1 Version, but is already functional. Any comments are welcome!! :)

Using the code

One of the ideias of the library is to be easy of programming. Trying to do so, I choose a sistematic view of the classes in the library, where each filter can be perceived like a box with a input and output signal.

Almost all classes in the library inheritance from SoundObj class, that implements this basic sistematic view. This permits that you write code like this:

WaveReader    wr1 = new WaveReader("teste2.wav");
WaveReader    wr2 = new WaveReader("teste.wav");
Gain        ga1 = new Gain(0.5f);
Gain        ga2 = new Gain(0.5f);
Mixer        mx  = new Mixer(2);
WaveWriter    wwl = new WaveWriter("exit.wav", wr1.NumChannels, 
                                 wr1.SampleRate, wr1.BitsPerSamples, 1, true);
            
ga1.Input = wr1;
ga2.Input = wr2;
mx[0] = ga1;
mx[1] = ga2;
wwl.Input = mx;
            
for(int k = 0; k < wwl.Interations; k++)
{
    wr1.DoProcess();
    wr2.DoProcess();
    ga1.DoProcess();
    ga2.DoProcess();
    mx.DoProcess();
    wwl.DoProcess();
}

wr1.Close();
wr2.Close();
wwl.Close();

This is a very simple code that just have 2 signal inputs (teste.wav and teste2.wav), amplify both by 0.5 (ga1 and ga2 objects), mixes both in just one signal that is the output of the signal, wich is saved as exit.wav.

Links

History

  • 02.09.2003 - Beta 1

Bugs and Comments

If you have any comments or find some bugs, I would love to hear about it and make it better.

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

Não Interessa!!!



Brazil Brazil

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
QuestionNo accept cultural reference. Pinmemberagmva7:35 8 Nov '11  
AnswerRe: No accept cultural reference. PinmemberNils de Jong23:14 13 Apr '12  
Question44100hz, 8bit, mono wavs supported ? PinmemberRich_UK21:44 25 Aug '09  
GeneralMy vote of 2 Pinmembergunzygcs7:28 12 Feb '09  
QuestionNewbie eager to learn.. Pinmembergunzygcs7:23 12 Feb '09  
GeneralTMS320F2812 DSP code Pinmemberpratik suthar3:08 20 Nov '08  
Generalreading from sound Reader and specifying Frequency Pinmemberashenayeemruz16:35 28 Feb '08  
QuestionPlaying continuous stream of PCM data Pinmembert4urean10:28 7 Aug '06  
My project has a method that continuously reads a block of PCM data from an external radio receiver connected to the computer through USB.
 
Is there and way to listen to that signal through C#. IS PCM just like audio signal … if not how do I convert it into audio.
 
o O º(`'·.,(`'·., ☆,.·''),.·'')º O o°
»·'"`»* *☆ t4ure4n ☆* *«·'"`«
°o O º(,.·''(,.·'' ☆`'·.,)`'·.,)º O o°

GeneralWaveform audio interface component for .NET PinmemberAdamSlosarski0:22 4 Nov '05  
Generalhelp me PinsussAnonymous2:06 21 May '05  
Generalp?how i can play astream of buffer directly PinmemberMAD_ADDISON11:46 13 Apr '05  
GeneralResample wav Pinmemberzuken2115:11 21 Mar '05  
Generala question about this project Pinmemberzeta52011:34 25 Oct '04  
QuestionRe: a question about this project Pinmemberjasonxz10:34 7 Mar '06  
QuestionRe: a question about this project [modified] PinmemberJack McScratch8:01 26 Feb '07  
AnswerRe: a question about this project Pinmemberjasonxz6:55 1 Mar '07  
GeneralRe: a question about this project Pinmemberlaysonropteacher13:51 3 Mar '07  
GeneralRe: a question about this project Pinmemberjackmcscratch23:18 25 Apr '07  
GeneralInteresting PinmemberVilaz6:09 3 Nov '03  
GeneralAudio Recording (microphone) Pinmembermai99kpd0:18 18 Sep '03  
GeneralRe: Audio Recording (microphone) Pinmemberkezababs8:48 29 Jan '06  
GeneralFFT PinmemberAlexander M.0:16 8 Sep '03  

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.120529.1 | Last Updated 7 Sep 2003
Article Copyright 2003 by Não Interessa!!!
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid