|
|
|
|
|
by phaedrus
5377 days ago
|
|
This simple formula produces an interesting sound in your a1k0n.net player:
(t % 1000) & t Multiplying the whole thing by t adds to it. Edit: t >> (t % 8) also produces an interesting sound; changing the number 8 changes the pitch. Edit 2: On the theory that primes might create an interesting beat frequency, I tried this which almost sounds like a 3 part harmony: (t >> (t % 7)) & (t >> (t % 5)) & (t >> (t % 3)) |
|
Maybe another way to ask the question, is in your 3-part harmony example, do certain portions of the code correspond to certain parts of the generated tone?
Or is this all just totally random, trial-and-error stuff?
Thanks!