I want to start learning about audio processing, out of general interest and curiosity. Someone asked a similar question and got this great conceptual introduction to the topic. But how does a beginner get hands-on? I found some online courses on DSP, such as this online book, but they tend to be way too advanced and in-depth. I just want a tutorial I can walk through in a few weekends where I can learn simple tasks like speeding up audio, changing pitch, filtering out certain types of sounds, compressing, etc. Ideally, this tutorial would provide sample files and code examples.

I'm on Windows and my preferred languages are Python and C#, but I'm open to others.

link|improve this question

1  
Any luck with pyo? – senderle Mar 19 '11 at 16:44
feedback

5 Answers

Microsoft's Media Foundation and DirectShow are interesting frameworks for audio processing, and being from Microsoft, have decent support for C#, wide compatibility and large online communities.

Directshow uses a system of graphs and filters to separate the various components of processing of an audio stream; so you might have a filter for decoding the audio input format, one to do some manipulation of the data, then one to encode the stream into the output format. Stock filters exist to perform hundreds of operations, and there is some really powerful inbuilt behaviour for auto-selecting filters based on the input, output and other filters involved. Once you have a reasonable understanding of how to work with the framework it gives you a jumping off point for writing your own audio manipulation filters. If you want to get a feel for the API, start by having a look at the GraphEdit program which is included in the SDK, which gives a visualization of how the API works.

I have less experience with Media Foundation - but if it builds on DirectShow and yet is more powerful and easier to use then it would likely be a great starting place for you.

Media Foundation is the next generation multimedia platform for Windows that enables developers, consumers, and content providers to embrace the new wave of premium content with enhanced robustness, unparalleled quality, and seamless interoperability.

Hope this gives you some food for thought.

Introduction to Media Foundation, Introduction to DirectShow, Microsoft Media Foundation with lots of samples and help, DirectShow SDK

link|improve this answer
Looks like DirectShow and Media Foundation are both not available through C#. – RexE Jul 25 '11 at 23:38
feedback

You might find useful information here for audio processing in python.

link|improve this answer
1  
Thanks, but there's dozens of links there. It's hard to know what's the best place to start. – RexE Feb 27 '11 at 23:23
feedback

I've enjoyed playing around with pyo. It's reasonably well-documented, and although I haven't found a lot of tutorials (seems like a fairly young project), they do provide an introductory tutorial and a tutorial explaining how to create a vocoder.

link|improve this answer
@RexE, I had deleted this answer for some reason -- not even sure why, now. Thought I'd undelete it since you found it useful. – senderle Apr 17 at 3:19
feedback

Here is a fun example to make your own AutoTune in C#. It will get you the basics of getting an audio signal, applying some algorithms and outputting a final sound.

link|improve this answer
feedback
up vote 0 down vote accepted

@Senderle suggested pyo, which seems to be just what I was looking for.

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.