Bytebeat

Return To bottom

Report a post to moderators
Post
2332
>>2329
its just pcm, basically audio converted to raw text data that the bytebeat can read and play

doing something like this isnt really that hard, you just need an audio file and convert it to the raw PCM text, and do this:

a=``, // insert pcm data between the backticks. doesnt matter if there are newlines
a.charCodeAt(t%a.length)


this one does multiply t by 4 and multiply the overall result by 3.8, but that's not important for all stuff


Return To top