What would be the recommended book to get an introduction to the field of sound synthesis from a programmer's point of view? I'm not looking into doing anything advanced anytime soon, so I'll boil it down to two points that I'd like to satisfy:

  • Understanding what I am doing when I feed a bunch of bytes into some sound API capable of outputting it, like Flash's SampleDataEvent or XNA's DynamicSoundEffectInstance, for instance.

  • Being capable of looking at a diagram like the one below and get a rough idea on how to implement it. In other words, know how to implement most of the necessary basic building blocks, i.e. know how to program a square/saw/pulse/noise signal, implement a low pass filter, create a delay line, etc.

    http://en.wikipedia.org/wiki/File:Karplus-strong-schematic.png

link|improve this question
Off topic, but you should check out puredata.info - it's a nice platform for practicing implementing synthesis techniques. – Sam Dufel Oct 22 '10 at 18:29
feedback

2 Answers

If you are going interested in the computer music route, more than the Roads book I would suggest Elements of Computer Music which has many c snippets going over the dsp basics such as fft as well as going over z transforms, and such. For your task requirements you list above this should be sufficient.

However, if you are comfortable with turning math into code, Udo Zolzer's Digital Audio Signal Processing is okay, but for me it was a bit heavy on the math, and a bit lacking in the explanations and applications. There is also DAFX which is edited by Zolzer as well. It is actually a collection of papers from the people who organize the DAFX conference, but it is aimed at covering a wide scope of common tasks. I found this to be much easier to read and implement effects from. That being said, I only have the first editions of both these books, and it looks like there is a second in print which may address these issues.

link|improve this answer
+1 for the DAFX book. – Shannon Dec 2 '11 at 2:27
feedback

The Computer Music Tutorial by Curtis Roads might be useful for an introduction to some synthesis techniques. Some of the books other content might be dated, but I imagine the synthesis and dsp information is still somewhat relevant. It's been a few years since reading and I can't remember the contents exactly.

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.