Procedural or computer-generated music is music composed by, or with the extensive aid of, a computer or computer programs.

learn more… | top users | synonyms

1
vote
1answer
126 views

Flip an array of Cellular Automata data into a music score (like WolframTones)

Ok, so using some basic principles of Cellular Automata, I've managed to get a program running which generates a set of data calculated from rules. Each cell is a boolean. Currently I am storing it ...
2
votes
3answers
204 views

Procedural audio for rolling dice

I'm looking for suggestions on how to approach randomizing the audio around rolling a pair of D6 dice in my game. I'd like each roll of the dice to sound different but be reasonably plausible. And I ...
3
votes
1answer
799 views

C# XNA generate MIDI

I wish to play MIDI like notes from the C# XNA program. I don't actually need to construct a MIDI file, just have the ability to start and stop notes or play them for a given time. play("flute", ...
7
votes
4answers
820 views

Procedural music generation?

Anyone have good book / article recommendation for procedural generation of background music? (No vocals, just instruments). I'm not interested in: How do I generate the sound of a particular note ...
6
votes
2answers
162 views

Procedural snare drum

So I've got something like: void createSinewave( short * array, int duration, int startOffset, float freq, float amp ) ; void createSquarewave( short * array, int duration, int startOffset, ...
0
votes
1answer
271 views

Finding free individual note sounds for procedural music

If you want to make procedural music, generally you're going to need individual note sounds (for whatever instrument) which you can string together. Is there somewhere i can get these for free, ...
7
votes
4answers
3k views

Dynamic Audio Generation Actionscript 3

I'm looking into making a music theory lab application, where you can see the graphical relation between music theory concepts. I would like this to be available online, so Flash and Silverlight come ...
10
votes
5answers
549 views

What's a good API for creating music via programming?

I'm looking into playing around with procedurally generating music. I'm hoping to find a really a simple API where I can just call out instrument, note, duration and string together a song (I'll take ...