ByteBeat Music Generator

Sample Rate: 8000 Hz
Volume: 25%

What is ByteBeat?

ByteBeat is a method of creating music using simple mathematical formulas. It generates audio by evaluating a mathematical expression for each sample in the audio stream. The result is often surprising and can range from simple rhythmic patterns to complex, evolving soundscapes.

How it works:

The formula takes a single parameter 't', which represents the sample number (time). It should return a number between 0 and 255, which is then converted to an audio sample.

Examples:

// Simple sine wave Math.sin(t/10)*128+128 // Complex rhythm t * ((t>>12 | t>>8) & 63 & t>>4) // Evolving texture (t*(t>>5|t>>8))>>(t>>16)

Experiment with different formulas to create unique sounds!