Wondering if there are any open-source Audio-Processing libraries. Would be excellent if they also support transformation filters.

For instance, is it possible to invoke the audio-processing functions available in 'Audacity' in my own application program, in an efficient/seamless way, as one would expect from an API ?

My aim is to take some streaming (or file based) audio content (from various sources), and do things like amplification, spike-removal, apply a band-pass filter / graphic-EQ function... and other audio transformations.

Would Gstreamer be a good option to consider ? My target platform is Linux on x86/x86_64.

Options, advice and pointers are welcome.

link|improve this question

I remember using portaudio for a simple synth on a Unix platform a few years ago. I'm not sure if it's got filters as well. – Phonon Apr 14 '11 at 21:33
feedback

1 Answer

BASS http://www.un4seen.com/ might work, but it's not open source. High-level effects built into the API. SPUC http://spuc.sourceforge.net/ is targeted more for low-level simulation/prototyping.

This open-source project http://code.google.com/p/dspfilterscpp/ looks like a safe bet, designed for audio output, but you won't find high-level filters like compression built in here.

It almost sounds like you want to build a VST Host, then you could leverage hundreds of free VST plugins that can do what you want. JOST http://www.anticore.org/jucetice/?page_id=4 is an open-source VST host for Linux.

About Audacity, that's a good question, I'm not sure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.