I have done a MIDI project: 14 Track Drum Machine + Groove Sequencer. And now I'm moving towards adding Audio to it, possible as a second Arduino project, like a daughter-board or just a new product itself.
Now I'm wondering if I could use the Arduino to output quality drum-sounds, or even creating a multi-arduino pcb, each chip doing 1 or 2 voices at least. Still brainstorming for now.
could use the Arduino to output quality drum-sounds
That is a bit tricky as the arduino doesn't have the memory for outputting real samples. However the Lady Ada wave shield will allow you to output .wav samples but not of any great quality, just 22K 16 bit files.
With some special programming tricks it is possible to produce 14-bit audio by combining two channels set at different volumes, giving two 14-bit channels instead of four 8-bit channels. This is done by playing the high byte of a 16 bit sample at maximum volume, and the low byte at minimum volume.
14-bit? Really?
I could just do regular vintage analog drum sounds, as they don't require memory, only math, filters and envelopes. And see if they sound good in 14-bit. (internally they would be processed in 16 bit floats)