Tagged Questions

9
votes
4answers
787 views

How to reproduce C64-like sounds?

I did some of my own research and found out that SID-chips had only few hardware supported synthesizing features. Including three audio oscillators with four possible waveforms (sawtooth, triangle, ...
2
votes
3answers
244 views

Basic sound generation/synthesis library, any language

I'm writing a small web app for a music psychology project that will play a series of sound samples for a subject and ask them to rate each one. I need to generate a series of tones (probably all sine ...
0
votes
1answer
56 views

What language would be most fitting to use for GUI based realtime synthesis and sequencing applications?

I'm looking to program synthesizers and sequencers, however I do not want to use a visual programming language like MSP or PD. What would be the best language for making programs for realtime ...
0
votes
2answers
673 views

Extending Karplus-Strong with low pass filter

I have implemented a basic Karplus-Strong algorithm. Ringbuffer, filling with white noise, output a sample from the front and append the average of first two elements to the end and delete the first ...