Bytebeat

To bottom
Changelog / Common thread / SthephanShi / kOLbOSa_exe / lhphr / PortablePorcelain / HypernovaHeathen / BaenHoHoHo / SArpnt / hcdphobe / OnixIsThePewterGod / Zackx / GetDolphinedLol / psubscirbe / ChrisRM380 / Kouzerumatsu / MT2023 / Decent-Manager-6169 / Chasyxx / Glebguything / absolute197 / ANoUserXD / MarioFan171

CAPTCHA
 Deletion password
  • Supported file types are JPG, PNG, GIF, WEBP, WEBM, MP4 and MOV.
  • Limit: 4 files, 30 MB per file (60 MB for Passcode users).
  • Images greater than 250x250 will be thumbnailed.
  • 992 unique users on the board.

3 Reply
images.jpg
(7.23KB, 192x170)
Cool_code_bro.jpg
(25.68KB, 313x356)
Here you can post the results of your experiments, or something interesting you found on the Internet and would like to share it (with link to the source).
Interesting and cool-sounding code I will add to my library!

Use markup button "C" or insert [code][/code] tags to wrap your code, so that it will not be formatted. Like this:
[code]
t*(t&16384?6:5)*(3+(3&t>>(t&2048?7:14)))>>(3&t>>9)|t>>2
[/code]


Or use links generated by player:
https://dollchan.net/bytebeat/#v3b64K9HSKFEzNDO2MLE3szLV1NIw1tYwViuxswMKGxmYWNibWxmaaGpqAgXAwpaaNUDSCAA=

Better to shorten your links like this way:
[Awesome tune](https://dollchan.net/bytebeat/#v3b64K9HSKFEzNDO2MLE3szLV1NIw1tYwViuxswMKGxmYWNibWxmaaGpqAgXAwpaaNUDSCAA=)

This will turn to Awesome tune

Songs by SthephanShi: >>7
Songs by kOLbOSa_exe: >>27
Post too long. Click to view.
459 posts omitted. Click Reply to view.
4968
4985
>>4984 is probably the best I ever made so far
5010
>>4963
schizophrenic much?

like what was the post about
5011
>>5010
A wall of text about a credit card
5050
>>4927
I am also Gleb_Mii since that is my computer alt account of Reddit

5082 Reply
Screenshot_20241109-165346.png
(363.55KB, 1274x714)
5084
>>5082
I hate when the r/Sprunki subreddit is always showing up on my feed for no reason, even when I try to mute it. and the incredibox community is sadly being ruined and brainrotted because some content farm youtubers are making/showcasing these stupid sprunki mods.
5086
I'm gonna ask you a question, is sprunki an original or a mod?

5085 Reply
bwuh.jpg
(4.20KB, 224x232)

4972 Reply
baglini+-+web+-+photo+43.png
(676.22KB, 765x712)
Write a chord progression player that's shorter and more concise than this one but has far more capabilities and can play rare/strangely-named chords (found in jazz/prog for instance), better if you use cool synths (Float64 wavetables, FM, soft pads) with rhythms, envelopes (ADSR), effects (N-order IIR filters, FDN reverb, chorus, dynamic compression) and arpeggios with some drums (pattern generation (rush/rolls, dynamics, off-beat/humanized swing), membrane simulation (snares, hi-hat, cymbal, bells)), even better if it's microtonal (are new chord notations required for this?) and not the standard 12-TET:
var PI=Math.PI,TAU=2*PI,noteNumbers={C:0,"C#":1,Db:1,D:2,"D#":3,Eb:3,E:4,F:5,"F#":6,Gb:6,G:7,"G#":8,Ab:8,A:9,"A#":10,Bb:10,B:11};function parseChordString(s){var t=s.match(/\/([A-G][#b]?)$/),e=null;t&&(e=t[1],s=s.slice(0,s.length-t[0].length));t=s.match(/^([A-G][#b]?)(.*)$/);if(!t)throw new Error("Invalid chord: "+s);return{rootNote:t[1],modifiers:t[2],bassNote:e}}function parseModifiers(s){let e=[],r=s;for(;0<r.length;){let s=!1,t;(t=r.match(/^maj(7|9|11|13)?/))?(e.push("maj"),t[1]&&e.push(t[1]),r=r.substr(t[0].length),s=!0):(t=r.match(/^m(in)?(7|9|11|13)?/))?(e.push("min"),t[2]&&e.push(t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^dim(7)?/))?(e.push("dim"),t[1]&&e.push(t[1]),r=r.substr(t[0].length),s=!0):(t=r.match(/^aug/))?(e.push("aug"),r=r.substr(t[0].length),s=!0):(t=r.match(/^sus(2|4)?/))?(e.push("sus"+(t[1]||"")),r=r.substr(t[0].length),s=!0):(t=r.match(/^add(#|b)?(\d+)/))?(e.push("add"),e.push((t[1]||"")+t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^(13|11|9)/))?(e.push(t[1]),r=r.substr(t[1].length),s=!0):(t=r.match(/^([#b])(\d+)/))?(e.push(t[1]+t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^6\/9/))?(e.push("6/9"),r=r.substr(4),s=!0):(t=r.match(/^(6|7|5)/))?(e.push(t[1]),r=r.substr(1),s=!0):r=r.substr(1)}return e}var intervalsMap={1:0,2:2,3:4,4:5,5:7,6:9,7:11,9:14,11:17,13:21};function getIntervalFromDegree(s){return intervalsMap[s]||0}function getChordIntervals(s){var t,e=parseModifiers(s),r=[],s="major";return e.includes("maj")?s="major":e.includes("min")?s="minor":e.includes("dim")?s="diminished":e.includes("aug")&&(s="augmented"),"major"==s?r.push(0,4,7):"minor"==s?r.push(0,3,7):"diminished"==s?r.push(0,3,6):"augmented"==s&&r.push(0,4,8),e.includes("maj")&&e.includes("7")?r.push(11):e.includes("7")&&r.push(10),e.includes("9")&&r.push(14),e.includes("11")&&r.push(17),e.includes("13")&&r.push(21),e.includes("6/9")?r.push(9,14):e.includes("6")&&r.push(9),e.includes("add")&&e.filter(s=>s.startsWith("#")||s.startsWith("b")||/^\d+$/.test(s)).forEach(s=>{var t=getIntervalFromDegree(parseInt(s.replace("#","").replace("b","")));s.startsWith("#")&&t++,s.startsWith("b")&&t--,r.push(t)}),e.includes("sus2")?0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=2):e.includes("sus4")?0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=5):e.includes("sus")&&0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=5),e.forEach(s=>{var t;"#5"==s?0<=(t=r.indexOf(7))&&(r[t]=8):"b5"==s?0<=(t=r.indexOf(7))&&(r[t]=6):"#9"==s?r.push(15):"b9"==s?r.push(13):"#11"==s?r.push(18):"b13"==s&&r.push(20)}),(r=r.filter((s,t,e)=>e.indexOf(s)===t)).sort((s,t)=>s-t),r}function note(s,t=440,e=12){return t*Math.pow(2,s/e)}function sine(s){return Math.sin(TAU*s)}function pulse(s){return s%1<.5?-1:1}function limitFrequency(s,t,e){for(;s<t;)s*=2;for(;e<s;)s/=2;return s}var chordDuration=2,chords="Gb7 Gmmaj7 Emmaj9 Ab9addb13/C Gbaug Bmaj9 Abm11 Dbm11 Gb7/#11 Dbmaj9sus2 Eb13sus4 Dbm9".split(" "),totalChords=chords.length;return function dsp(s)
Post too long. Click to view.
5083
link below if you're lazy to copy..
link

2628 Reply
Four_intro.png
(27.31KB, 1206x1277)
237 posts omitted. Click Reply to view.
5057
5066
0123456789.webp
(28.60KB, 364x427)
>>3599
this makes me feel like im in 2023, to be honest..
5068
5080
5081

4581 Reply
screen.jpg
(1.41KB, 60x55)
take this one for example
(((t^t>>5|t^t>>6)&t>>4)>>8)*(t^t>>8)

11025hz bytebeat
79 posts omitted. Click Reply to view.
5039
fixed
also i got ooeee as my captcha
5040
5063
5064
5079

727 Reply
Ractangle.png
(10.63KB, 686x393)
I did my best to create the codes

Random Dumpstep

woing

sin rythim

ok thanks bye i'll do more soon
84 posts omitted. Click Reply to view.
5004
5029
5041
5062
5078

368 Reply
Screenshot 2022-08-11 155647.png
(21.24KB, 168x178)
t*4*[1,1.13,1.275,1/0.75,1.5,1.7,1.875,2][(t>>12)%8]

Major scale
206 posts omitted. Click Reply to view.
5026
2024_11_23_0fu_Kleki.png
(1.31KB, 32x32)
BYTEBEAT 1:
same as XolontiumV3 >>4928

BYTEBEAT 2:
100 * (4 * t >> 11 | 5 * t >> 2) % 154

https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSMjQwUNBS0DABEiUKdnYKhoYKNQqmMJ6RpoKqgqGpiZKOUnFibkFOalBiCVCXoYGRiUEtAA

BYTEBEAT 3:
t * (((t >> 13) % 20) & 15) / 2 ^ t * (((t >> 13) % 20) & 15) * 4

https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKlHQUtDQ0ChRsLNTMDTWVFBVMDLQVFBTMDTVVNBXMFKIU8CnQkvBRElHqTgxtyAnNSixBGigoYGRiUEtAA
sound also used in XolontiumV3

BYTEBEAT 4:
t * (((t >> 13) % 20) & 15) / 2 ^ t * (((t >> 13) % 20) & 15) * 4

https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKlHQUtDQ0ChRsLNTMDTWVFBVMDLQVFBTMDTVVNBXMFKIU8CnQkvBRElHqTgxtyAnNSixBGigoYGRiUEtAA
Post too long. Click to view.
5047
2024_11_23_0fu_Kleki.png
(1.31KB, 32x32)
(t/((t/8%512)**2)|(t*32^t*16)/5*4*(t>>12&1)*((t>>11)-1&1)|(t*128^t*64)/5*4*(t>>11&1)*((t>>10)-1&1))|((((t*2^t*2>>12)*t*2>>8|t*2>>10)&255)*(t*2/1024|0))

https://dollchan.net/bytebeat/#4AAAAIEZNzLENxDAMA8BpPhAJPGwqduAqo2QKlR4+clL8qyKBEy2KWZTx6XKQjmnB3a+gDpTORovzlG8C7YnCV9mWk4+ER/uD+sH6wpR5wbXpawp8wphvr9i893zKWlS9zQrc
to use this, place
(t/((t/8%512)**2)|(t*32^t*16)/5*4*(t>>12&1)*((t>>11)-1&1)|(t*128^t*64)/5*4*(t>>11&1)*((t>>10)-1&1))|
behind the code you want to use this on
5067
xroomskiddworldtourrahh.jpg
(12.39KB, 128x128)
(0xCA98CA98>>(t*(((t>>12)%8%3)+2)/64*((t+131072)&131072?((t+65536)&65536?((t+32768)&32768?1:1):((t+32768)&32768?1:1.2)):((t+65536)&65536?((t+32768)&32768?.8:.8):((t+32768)&32768?.75:.95))))&1)*128

https://dollchan.net/bytebeat/#4AAAA+kZ9jEEKgDAMBF9jySpEk9o27aEifqkHn6/WqxhYBmbZ0HIee7YntVIbiajVKorBBo9JMcf1lm0SL0tSuJfbo2IIPsJ1dOE1RYPr2KQIypdlxVv879kK28cHTqFwDrjPCUZRuwA
to actually make this c++ compatible, do:
(0xCA98CA98 >> static_cast<int>(t * (((t >> 12) % 8 % 3) + 2) / 64 * ((t + 131072) & 131072 ? ((t + 65536) & 65536 ? ((t + 32768) & 32768 ? 1 : 1) : ((t + 32768) & 32768 ? 1 : 1.2)) : ((t + 65536) & 65536 ? ((t + 32768) & 32768 ? .8 : .8) : ((t + 32768) & 32768 ? .75 : .95)))) & 1) * 128
5072
xroomskiddworldtourrahh.jpg
(12.39KB, 128x128)
T1=t*.8,T2=T1*2,T3=T2*1.5,T=[T1,T2,T3][abs((1)-1)%3],ins1=((t*6*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31])^(t*2*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]))&128,ins2=((((t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31])^(t*5*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]))&255)*5|255)/5,ins3=(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]&191)*([1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*(T>>12&1)?0:1),ins4=sin(sin(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*PI/128)*7)*127.5+128,ins5=atan(sin(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*PI/128)*11)*127.5+128,ins6=(0xCA98CA98>>t/8*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]&255)*(-T>>5&255)/255,ins6V=(0xCAA382478432324>>t/8*[1.2,1.5,1.35,1.8,2,2,2,2][T>>15&7]&128)*(-T>>5&255)/255,[ins1,ins2,ins3,ins4,ins5,ins6,ins6V,0][(T>>18)%8]%256/2+(sqrt(T/2%8192)*64%128)/2+((t&7?r:r=random()*512&255)*(-T/64&255)/255)*(T>>14&1)/2

https://dollchan.net/bytebeat/#4AAAAIEfNVLFuwyAQ/RojINj4DmOTSDiKOnXrgLpYVHLVJUNT1fbQoR9fwE7URuqOLLjjDHfPz+9wYBdeGeHQOuAonLIOOVRaODs4CPEQ8sP4OlMKrARWKC/OlxkspQtv+QCiFiDiAaiUjosK0wyob7Zcza8dW2A7fFv/8eqq7fR/O/zg+h4UUeDZS4CCeUBhBNBEgjAQFCnKAlUkSOcBhRHUmnH9HY3UkSplM+GJwB4YpzlA4TS6SIAd6wOwSFNj5/OFxpEHW/zpUQaxM94xDthVerdJX9txGbNECnAHtbW0/no47U0cfb9IkwXgtUdoGQI6+TJMCe/zCvikDDadaRQqbK64U6INE4Q7HddnzatJ50ki4T7tEK/zdGWlZkxSS78xFVyritoPSZGGFcYXqFuJOzp/Tgt1EgsDe2S8bYpYIL6hC+mO02Gy03h5+3inoeGDmK9fJdvmVp6tSm+C0iX+AA
5073
xroomskiddworldtourrahh.jpg
(12.39KB, 128x128)
>>5072
fixed version
T1=t*.8,T2=T1*2,T3=T2*1.5,T=[T1,T2,T3][abs((1)-1)%3],ins1=((t*6*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31])^(t*2*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]))&128,ins2=((((t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31])^(t*5*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]))&255)*5|255)/5,ins3=(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]&191)*([1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*(T>>12&1)?0:1),ins4=sin(sin(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*PI/128)*7)*127.5+128,ins5=atan(sin(t*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]*PI/128)*11)*127.5+128,ins6=(0xCA98CA98>>t/8*[1,0,1,1.5,1.35,0,1.2,0,1.125,0,1.125,-1.125,1.35,0,1.2,1.125,1,0,1,1.2,1.125,1.2,1.125,1.2,0.675,0,1,1.2,1.125,1.2,1.125][T>>13&31]&255)*(-T>>5&255)/255,ins6V=(0xCAA382478432324>>t/8*[1.2,1.5,1.35,1.8,2,2,2,2][T>>15&7]&128)*(-T>>5&255)/255,a=[ins1,ins2,ins3,ins4,ins5,ins6,ins6V,0][(T>>18)%8]%256/2+(sqrt(T/2%8192)*64%128)/2+((t&7?r:r=random()*512&255)*(-T/64&255)/255)*(T>>14&1)/2,a<0?0:a

https://dollchan.net/bytebeat/#4AAAAIEfNlL1uwyAUhZ/GCAgxvhdjk6g4ijp164C6WERy1SVDU9X20KEPX8BO1Ebqjiy4cM3P5+MDDuzMSyMcWgcchVPWIYdSC2d7ByEfUr4fXidKgW2BFcqL82UCS+nMG96DqASIOAFKpWOnxFQD6lvcLuHXiDWxTr71/7Sqsmn1fyN877oOFFHg2SmgYB4ojACaKBAGgaJEWVBFgXQeKIyg1ozr7xikjlIpm4lOBHbAOM0BhdPYRALsUO2BRZlqO50vNJY81OLPTzKYnfGWccC21JvV+toO85AlKcAdamNp9fV43JlYum6WJgvg5YzQbUjo1JahSrwvC/BRGaxbUytUWF+500IrE4Q7HZdnWVeT1pMkwv2yg+3jhZ4urXQck9nSj0xbLvuKyvfJk4YVxheoG4kbOn2OM3USCwM7ZLypi7hFfENn0h7G/WjH4fL28U7DkQ92vn6XbOobAFu8XgevSxTDQxUcP/wA

5008 Reply
snapChad.webp
(89.93KB, 1439x1532)
Motherlode V2 (please use this version!):

Post too long. Click to view.
5009
H4XX3D Up For Barbecue (bytebattle season 2 entry):

Post too long. Click to view.
5070
Dennis Skrillchie (remix of George on Blogspot, C compatible):

(t>>9&6?0:9001/(t%4096)-t/9&8?-1:0)^t>>4&t*(3&t/(1+(t>>14)%8)^t>>(t>>9&8?19:20)*(t>>11))
5071

27 Reply
sketch-1642018617887.png
(177.22KB, 1080x1080)
i made new waveform, or this is a sinusoidal abuse?
gc=t/(t/[12,13,14,15,16,17,18,19,20,21,22,23,24][t>>12&13]),(sin(t/gc)+sin(t/20)+sin(t/20)+tan(sin(t/t-t/(gc+0.01))))/4


https://dollchan.net/bytebeat/#v3b64TY69CsJAEITfZQvJkdHs7sVfMKUPYBtSnGcIgfwI2U58dw9i4VRfMcN8b4rzs6ULdfFqRWZFLQrxkBKyhxwgR8gJcoYyVKAK9dCyqa2qRDfiG4ds6ac07aLLV1L+JwvTr2Hb9NHFnHcsLqUoCbSE8TW092BJwyszg8bV6TbMwR5tMPp8AQ==
137 posts omitted. Click Reply to view.
4817
IMG_20241103_171338.jpg
(2.58MB, 4624x3472)
4912
Без названия333_20241111235413.png
(243.01KB, 962x1280)
4937
0:09, lv_0_20241112234835.mp4
(1.46MB, 1604x1080)
4970
>>3551
This is basically PC speaker but without the pitch editing
5065
1:18, hl1_if_it_was_good.mp4
(2.79MB, 480x270)
mine prev phone just randomly died and idk what happened to him maybe it's a faulty unit

500 Reply
Opera Captura de pantalla_2023-03-02_175710_dollch
(12.01KB, 1013x250)
Stimmer but i added drums (44100 Hz)
t=t*8000/44100,
a=((t/4*(4|t>>13&3)>>(~t>>11&1)&32)+(t/4*(t>>11&t>>13)*(~t>>9&3)&31)),
b=cos(12*cbrt(t%4096))*32+32,
c=(t*random()|t/8>>2)&31,
d=(t*random()|t/8>>2)&31,
[a+b+c+40,a+b+d+40]

https://dollchan.net/bytebeat/#v3b64dY/LDoIwEEX/pYnNTEtCXzFg0n6EW3VRWnYCBmYn+u0WWLs7mXvuJPfN0pR7dmHkSTRKqdo5rVR1H6MHoNoJcCuFoC23GAJ8N9ZcI7cG5SEcp11CsRttkbnViOVP59O0gDYidTMBnZxqz4jCGmlNiZMHEnMc8zQArlQ3IZitW6L8P7pF2ckknao2yAUerGJLHF7P/hqpDNpnfH4
this is my first time posting here btw
210 posts omitted. Click Reply to view.
4661
descarga (3).png
(9.11KB, 1024x256)
4872
link
r=repeat=(x,y)=>Array(x).fill(y).flat(9),t?0:fx=r(3e5,0),fxi=0,lp=lopass=(x,f)=>(x=min(max(x,fx[fxi]-f),fx[fxi]+f),fx[fxi]=x,fxi++,x),t/=6,[tanh(sin(80**(1-t/4096%1))*512*.000000000001**(t/2%2048/2048)+(t/52*([t,t>>(-t>>4&7),t<<1,((t>>5|t>>12|(t>>13&7)*t)&25)][t>>12&3])%1)-.5+lp(random()*2-1,.1)*(-t>>9&1)*(1-t*4%2048/2048)*3+lp(random(),.1)*(t>>12&1)*(1-t/2%2048/2048)*3-(t>>12&1)+(t>>12&1)*(t>>4&255)/256),tanh(sin(80**(1-t/4096%1))*512*.000000000001**(t/2%2048/2048)+(t/52*([t,t>>(-t>>4&7),t<<1,((t>>5|t>>12|(t>>13&7)*t)&25)][t>>12&3])%1)-.5+lp(random()*2-1,.1)*(-t>>9&1)*(1-t*4%2048/2048)*3+lp(random(),.1)*(t>>12&1)*(1-t/2%2048/2048)*3-(t>>12&1)+(t>>12&1)*(t>>4&255)/256)]
5001
why am i thinking that bytebeat is just a daw that is missing alot of things
i mean i think we can make actual music in bytebeat
5035
image.png
(9.54KB, 1024x256)
link
t*=4,[(t/4&255)*[1,0.25,0.25,1][t>>12&3]+[0,96,96,0][t>>12&3],[128,(t/4&255)*[0.5,0.25][t>>2&1]+[0,192][t>>2&1]][t>>13&1],128,128][t>>14&3]/1.25+32

1/16x points mode
5061
imagen.png
(9.35KB, 875x91)
why doesnt the remix source show up in this bytebeat

520 Reply
unnamed (2).jpg
(8.89KB, 640x640)
96 posts omitted. Click Reply to view.
4353
>>1325
you made it sound like an instrumental of a song made by Parry Gripp lmao
4514
4516
>>3929
Yes, exactly like Dave from DnB
4776
I know this is complicated but
z=t'1242'[3&t>>10],(z[1,1.2,1.8,2.7][3&t>>14]&200)/2+40sin(256/(t&4095))+64^30cos(t*PI/32768)

its called квадрат бьется
5060

163 Reply
profile.png
(32.55KB, 480x360)
name: cool waveform second sawtooth wave
p=3*(t-(t>>10&4|t>>13&3|t>>17&6|t>>14&4)*t/((t>>16&7)+4))/1.56,d=3*(t-(t>>10&4|t>>13&3|t>>a17&6|t>>14&4)*t/((t>>16&7)+4))*1.91,(p&255)/3+(d&255)/2.5

name: siren
t*=20,[1,1,1,2,3.5,4.1,2.51,1.9][t>>11&7]*t/128*(-t>>16&15)%+(t>>10)

all bytebeat codes are from bytebeat.hcdphobe.repl.co
169 posts omitted. Click Reply to view.
4724
BadPiggies_FreckledPigIcon.webp
(2.51KB, 93x91)
4913
4988
arrow144.png
(240B, 32x32)
5019
EarthBound_Box.jpg
(32.48KB, 369x270)
5059

1 Reply
bytebeat_player.png
(79.68KB, 1130x869)
Hello to the music and programming fans!
This is a thread dedicated to the bytebeat player.

Here I will keep a log of changes, as well as show new formulas and code (my own, or someone else's), which I will add to the player's library list.
44 posts omitted. Click Reply to view.
4302
Markup (1).png
(16.49KB, 396x354)
Markup (2).png
(119.92KB, 1139x1184)
Created instructions for text formatting on /btb board.
I see, many people don't know how to make here named links or how to paste unformatted text.
4343
Screenshot 2024-09-02 at 01-21-10 Bytebeat compose
(114.85KB, 889x542)
Screenshot 2024-09-02 at 01-20-41 Bytebeat compose
(112.84KB, 889x542)
Screenshot 2024-09-02 at 01-20-20 Bytebeat compose
(115.46KB, 889x542)
Go to "Settings" tab > "Code style" selector.

Available styles:
- Atom Dark (default theme),
- One Dark,
- SArpnt (taken from SArpnt's player).

Also I added more visible highlighting of paired brackets. If you click on one, the whole pair will be highlighted in yellow. If the bracket has no pair, it will be highlighted in red.

Please suggest your own syntax highlighting options (with links or screenshots of editors so I can see them) or suggestions for improvement or correction.
4647
HD-wallpaper-pixel-landscape-pixel-8-bit-artist-artwork-digital-art-landscape.jpg
(89.90KB, 800x450)
Songs added this summer.

--------------------------------
by Zackx
- TECH2054 (>>1866) - Techno synth with echoes
- return on the earth (>>1906) - Nostalgic tune
- return on the earth (extended mix) (>>2130) - Previous, but develops like a full song. Nice drums.
- unrealistic XOR dubstep (>>2057)
- electric angel (>>2108) - cover of Kagamine Rin & Len - Electric Angel
- Desire drive (early version) (>>2185) - I'm not a Touhou fan, but the music is really great, awesome theme turned out.
- Desire drive (>>2501) - Previous but better sound, a lot of instruments.
- non-js echo (>>2187)
- heart (diagram) (>>2289) - Set "Diagram" mode and zoom to 2(-8). Also, you can see upside down hearts in "Points" mode, 2(-9) zoom.
- atari style-like "Good old fractal melody" (>>2442)
- my last brain cell (>>2444) - C-compatible madness!
Post too long. Click to view.
4907
Screenshot 2024-11-12 at 02-43-25 Bytebeat composer.png
(124.57KB, 1080x755)
Screenshot 2024-11-12 at 01-14-43 Bytebeat composer.png
(142.65KB, 1080x755)
Screenshot 2024-11-12 at 02-39-55 Bytebeat composer.png
(139.53KB, 1080x755)
Screenshot 2024-11-12 at 02-38-19 Bytebeat composer.png
(101.20KB, 1080x755)
1. All songs are transferred from .json files to a SQL database. Now I can manage songs any way I want, assign them a hash and make selections for remixes for example. I made a sending form (so far only available to me), so that it would be convenient to add songs to the database. The player still uses static .json files, but now they are automatically generated from the database.

2. The main thing, for which all this was started - now you can recursively browse remixes of songs by clicking on the ">" buttons, the full information about the song will be loaded and you can play it.

3. Added a new section "All", where all songs are collected and sorted by authors. Also, because the "Compact JS" section has become very bloated, I split it into two - up to 256 Bytes and from 256 to 1 KB. "Floatbeat" is divided into two categories - floatbeat up to 1 KB, and Big Floatbeat code.

4. Song entries on the page now have a more organized look (like posts on discussion board) to separate them from each other, and the author sections are also more prominent and can be hidden or unhided.

5. Songs are now measured in bytes, not characters. Since sections are generated automatically, which category a song will fall into, #256, #1k or #big, is determined by the length of the original code. If there is none, the formatted one is taken, then the minimum.

6. Yellow previews with code text that you can click on to play are only generated for songs that are no larger than 1 KB, and no more than 4 line breaks, so as not to stretch the page. Anyway, it can be played using the code play button.

7. Now for each song there are buttons to play the minified, original and formatted code. Each button shows the size of the corresponding code in bytes.

8. The #c tag is displayed for C-compatible songs in the "All" section. Also, #stereo for the stereo mode and #drawing for the songs that draw graphics now also displayed as tags.
Post too long. Click to view.
5058
llumya-8bit-landscape.jpg
(347.48KB, 1920x1355)
Songs added in last month:

--------------------------------
by Sychamis
- Can you Feel - Cover of Torchkas - Can you Feel [SPC700] - Introduce a platinum star for such masterpieces? Or do away with the rating system altogether?
- Bytebeat cover of "Noisy Pillars tune 1" by Jeroen Tel - Cover of Jeroen Tel - Noisy Pillars tune 1
- An attempt at covering Cocktail Hour by FΛDE - Cover of FΛDE - Cocktail Hour
- Lotus 1 theme port to my sequencer - Cover of Shaun Southern - Lotus Esprit Turbo Challenge main theme
- Sample/Wavetable sequencer - Cover of Junichi Masuda - Pokemon Blue/Red Vermillion City

--------------------------------
by feeshbread
- Dead Data - ByteBattle Season 1 Entry. One of the coolest bytebeat songs I ever heard.
- Dead Data early wip
- W E L L / T H A T S / L O U D - Powerful beat in style of 1788-L.
Post too long. Click to view.

5053 Reply
Kazakhstan.jifi.webp
(24.52KB, 800x437)
type bit
(floabeat,8 of 16 kHz)

sin(3E4/(t&4095))*(1488/(t&4096))
5054
5074
eb lan.png
(19.50KB, 350x261)
I don't know, but this is my remake on "ilovemykids26" by SHCWAZERNECJLACE

((3*t^t>>6|t))^(random(48148822033022)*-t>>8&31])*2|3E4/(t&4095)


16 kHz,bytebeat mod
5077
eb lan (1).png
(19.50KB, 350x261)

5044 Reply
unnamed.png
(38.40KB, 240x240)
not a bad melody

(on the 8 kHz)
5045
>>5044
Why do you create a new thread every time? Other threads are drowning because of that.
Create your own one thread and post there.

4595 Reply
b08vjj51ozpd1.png
(156.77KB, 575x581)
7 posts omitted. Click Reply to view.
4966
4967
4984
5025
5033

141 Reply
think speak heavy.png
(140.12KB, 680x361)
decided here would be the easiest place to post for now considering all the other stuff i have going on, going to answer some questions i probably have:

i deleted my reddit and youtube and other account because i'm trying to clean up all sorts of accounts for privacy reasons, i don't trust reddit with my account and i didn't enjoy posting there. i feel like i only had my point proven when everyone became unable to post. songs that i release should appear on my website when i get around to it so i don't feel like i've lost anything.

my website hasn't been updated in a long time because i've wanted to really do a proper cleanup for a long time so i can fix all the bugs and massively reduce the loading time (then post on things like 512 kb club, 256 kb club, etc)

the reason i've added funcbeat mode is for a few reasons:
- i wanted something that would be close to something like tinyrave, with a statement based syntax and sec t since it feels less like something ported from C and more fitting for javascript
- passing a function out and having the scope around it allows better performance since every variable outside of the returned function is only passed once
- because t is only passed into the last function, you can always easily take the last function and create a wrapper around it to warp time after the fact
- because of a few of the previous reasons and other practical differences it can be very useful to show off the music making aspects in a demonstration without having to explain things like sample rate and bytes and other programming concepts


anyways since the website isn't going to have a visible update for a long time i'll post this song here early:
Post too long. Click to view.
213
bagladesh.jpg
(107.43KB, 3555x2133)
2802
Screenshot 2023-12-18 at 05-10-23 Bytebeat compose
(59.86KB, 1024x320)
>>141
It's been over a year since your post and I finally decided to make a Funcbeat mode in my player, heh.
Here some tutorials how to convert bytebeat to funcbeat:

"42 melody" ported to funcbeat (play):
return (t,s)=>(t*=s,t*(42&t>>10)&255)/128-1

In this case, if you choose other sample rates, the sound will change. To prevent the sound from changing, you can set 8000 sample rate in the code, as in the original 42 melody (play):
return t=>(t*=8E3,t*(42&t>>10)&255)/128-1

Note that the funcbeat has a floatbeat range, from -1 to 1. Actually, (x&255)/128-1 is a conversion from bytebeat to floatbeat in the code above.
"stimmer" ported to funcbeat (play)
return (t,s)=>(t*=s,t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127)/128-1

In this case, the formula contains &127, so it’s enough to do x/128-1.

Also, some variation of my Dark Forest, ported to funcbeat: Attack in the Forest

Message edited: 18.12.23 Mon 06:31:37
2825
t/=48E3,s=s=>2**(('023578'[s%7|0]||10)/12+(s/7|0)+7.5),o=(t,b)=>(O=[O=t>12&&sin(b*200)/4+(t*s('0035'[t/3&3])/4%1>t/3%1)/4*b||0,O],(T=>{for(i=0;i<9;i++)(N=t-3/8*i)<0||(n=N*s(N%3*4-(N/3&2)+7),O[i%2]+=N<132&&T(n+N%3/9*T(n/((N/3&3)+1)))*(1-N*4%1)/3*.6**i)})(t=>abs(t%1*4-2)-1),O),t>127?o(t+4):o(t>48?(a=t%1,x=t*2&7,(t/4|0)*3+(t>96?(t&3)+a-(x>3):[a,(t&3)+[a%(1/12),(a-1)**2,a,a-.5,a*3/2,a*2/3,a-1,a-1][x],[a*3/2,a,a*3/2,(a-1)**2,a,a-.5,a*2/3,a*2/4][x]][t/16-3|0])):t,t<24||(t*(t/8-13|0?2:1)%1)**.4)

https://dollchan.net/bytebeat#v3b64ZVJNb6MwEP0vSCQzYxN/JhAak1P3SKSqN8TBdLMSUhtWiw+RSv97h7a3PdieeX7z5sN+z16m39eszpIKvnp0cg5zaCwRwFZbty+rbTfn5aL7ZTEalbECZsU+inK3RzkFSHLA0MAldJeQGmM3m3m8wUBWM98LSDSzlnb7bZeU27ie0dw0bOeGTRqWRctLL+E5NO9/pn8wBv0wno4PoxAIbUiFUxWNeNLLArfQslybO/IFtCxnuRCUl27MbS9CezKOC3iGm2COOhJbCr6IDoVBRAJTtOTX1I52B2LhD4QUmjjMkHLDuhYLw5Io127K8wRJeKz5aHx1hhiYJe8hkd2UEpLyPAxy3GdzPJwhrYliAffGYd1F+Q10MQfDw0MJkcWJrIwyFru9jOQUO2SVY8Csq+/uvex+Ln4I/4d9BfDuV3rPozWHwvE7IdZJppP1PK1EXF9VGMbPtjaYrxo7j5nM5vj29/X6FBM/vq+01jJ7+/4Jv16nmIZrTNnHJw
3101
FtFB9K.gif
(3.16MB, 320x320)
i showered.png
(848.60KB, 1052x731)
i've done a bit of work on the website again! one of the big things is a new url system, shorter than ever before, and it'll almost certainly shrink further when i figure out how to generate a deflate dictionary.

did you know the url anchor has 89 valid characters? it took quite a bit of digging to find that, but i use every single one of them.

not a lot of changes are visible on the actual website, in fact i've removed some buttons, but the code has improved significantly and codemirror has been updated.

and yes, the version in the repo works. i encourage you to use the code as much as you want. in fact, please do steal the url code, it's even in its own folder. if you can, please DON'T put the code on github. i don't like that github is scraping all the repos to make copilot. i reccomend you use some other git host instead like https://codeberg.org/codeberg. i'd like to hear about any projects you make.

i have some song drafts sitting around but i haven't finished any of them yet. i did get some nice noise generation though!

here's just a noise generator:
https://bytebeat.ficial.net/#6@yHrD(4NRg{X7xq]s7YP\3ju~\E_HD]Ka4yzmXo#1&DqqbZ_4R-Iz(Uj0/?(4E:SoL5OFNz/Yw/0CEryA|TSw?'4SBT$WR3ihu#M[O

and here's a drum beat, with a pretty good snare and hat:
https://bytebeat.ficial.net/#6lU&OQss1K|uQ.3eBeV?e3G)k.\)eN$F|Qo[_m3Z#LezrJ)gI|H^gU2#Pq.iR5RZTOAoS:O*QE(X1n1HGw=kybPg0as7Njf\7l(?P*^M8PznRqx-qJ((?xC^Eds4qA~Bg?~+]IBi2gDQ2f33+0ltQ&SA'|Pc-m0sS+'kQFjwCp91r/pM:+ypmUVa&K7*
Post too long. Click to view.
3102
apparently the bulletin board does not use bbcode. it uses half of it and also uses markdown elsewhere.

codeberg
noise generator
drum beat

i might need to revert the url changes, i didn't see beforehand that it breaks markdown.

5021 Reply
bandicam 2024-11-22 15-19-29-027.png
(30.18KB, 826x258)

5014 Reply
Screenshot 2024-10-13 112430.png
(186.41KB, 524x514)
5015
help

4537 Reply
7bceb2b267ecb60619fd7b0def9089388e743b6250661ebc32
(35.66KB, 640x640)
h
29 posts omitted. Click Reply to view.
4806
4815
>>4674
this sounds familiar
4823
4824
5000

77 Reply
BYTEBEAT BACKGROUND VISUALS BE LIKE....jpg
(9.27KB, 221x430)
I've Made A New Bytebeat Song. (The Clipping Is A Coding Error)

https://tinyurl.com/Long-Bytebeat-Link
27 posts omitted. Click Reply to view.
4489
https://dollchan.net/bytebeat/#v3b641Vjrbts2FH6VwUAFXRhHPCQlu4AMOF5vWFIE8QoMcPJDdtTWqyOvtowmbQr0DftKOyQlWZQlRxuwH4sT8ly/c3hI85JvvcX6Nuk9702jizj72N8uUzLR5GK9JVe59PMmI+eaXq0/kEtN/rX+Qi5STd+h48V9Tsf35OVK0+9X6/WGTJIcM1muyFjT8XxLXl1FtB/Qgc/YcEjGt3/SKDsVfUFBSA6Q8/tDOggFebHaaL8X5OcPTV2+Ie+RZn3K/KEgWbyLfv5woe/7A8Go1F2ev5uixftdusiW69S+Jw/kq/Ntk2S7TfqLbd+7aOR49oOLneN+/U6u3r7S4Js4vV3f2Q65jLMs2aQ0uu5R3/ep+vjq77pXaKHU7i32Wia1wNSHC86AMr7XctQy/AFgjHMhOHBA7XkS314kq/Xtw8t4m0WZe2nTvixMATrLRiMKFhU3zikNKvbT1fpLmz3T9gEn79Lldp1qD5qb7635EWtosebaehiQ8fxhu8WpBcZFEA6GJMYIoxE8Zu6rq9GIkxgkH+T8gMQMp1qSaKL0POcDyQ/I2TL7dbO7o9HUjqkVU1dFcFzbPkH90GKORx23mCqVDZXZeLxwBekKVgxHXaHJlUlXZsXMdKV+U1gwfbn05VbMj/uC4TtX1WJ5dQIyV9XiOR+SeVEtJquD+qJaXPKhjD19+Qc9S+KMRrY9tefUmpc1o33xqEapWnCs0Kl6AHpM7DlYc6h7qMmhrO7BdAxmzVnHGFzH4NacH4uxoJHcE+Q4dR/k/ZAsQKpgNBKPuqd+QYg8EuTjX9DHRTF4y9TiWBfwuICK9vfNMk4/rJLflotPGN4+tzOL4/biuODzAU7AMxDBCYWB/NI1TX3VBdugxaUy40ZMyGMO6BCXBxWsDYDuv6Fe1YX5IRyNqVyI3FTklkEjc6NxwaoL+j4VFu4whYtcIaaNhVPs1WQ4oz4IqcEU+oLIXakeUMrcwILHmgjtraBBSK1BiQN1HHaIw1TqB0goZoj0Jt1m+BVN0my8yHZxtt5E5ZmB2xtjBA+nEJuhc2oqhNLIFmeZvF6+VgttamfuIeZjkxArQit7AZV7gTdp9EdTX7SCiDoK8if5HubgVqJyg7bcumLTpzKkbSBQxyjyg0p+7Eh+HZDhyexaxwiijlLkxyr58WP5dcFmT2UIbSCsjlHkx3V+0zTeJK1r75Q343aeWd46PtGwPmpzq3JrX3sdsZ+YXd5nbSDsiblV+bWvvU7IT8ws7/PWMfKD9dE0t+1rryM2fyrDoA0kqGMU+Qmdnz4iMb0rPHxowAZYlovUxps6XkbQFvfM058/Tvy+cCozwfJsqk73DU70wAn5MpkB0YdlHp1BGIQt0StAzIheODVFFwdOeXSho+eXmbfr5TbBK568lqjLGbVKEooLiePObFsjhRKJlMCKvVGncmDRG8yr9GZ7IJ4DQXcgPK3za85BhrAHZgfA3ATmVeCwliHfAxWXMNYdCDN8kS4+xmmW3OrHBY2MJ8kz7hm8uk80CEWTDA3r8GDA15HAled6gzAIG4RDhB/TaFY8S7zikVE+VEhdxdtVR7xYF9WBBI5I2vNpSEPPl1AXxjGo8ZYPC6/6ZjCeHKTBDLqZ/RM0+m/MWjXQUdNtPEeGYNSURTPjweEZTwHzMUL+J5b/hY50zswoL49m5TvHK58v+7fPnvLKZ0Wjtpsv7aptkMFx2dH8GrOqFuIM9yr9SiHVDgyOeoZQc8zkdMdNh1xXBAwxHu4V+mZKqh0YHI6pKtQcMzndcdMh11Xj4fdIr4V9CxWaehXJcbqCOqHljqdOUePQL/aBqqaBKeAYwmFR6kfewRno1U+tg2PsQFAN8XGXfhpHszH1xoAnFJEEL4hSwqqEaqFsC/vcW
Post too long. Click to view.
4579
4773
>>77
minified: https://dollchan.net/bytebeat/#v3b647Vhtb9s2EP4rg4EYoihbfJdcQPmWBvs25FOBNAOcRF6LJrZjOXCBdv99z5F6jxd3GDb0Q5xI5N09PN4deUfT3yZ3m/ty8m7y5an4OHE2yz9Oki8l+lnuLPUP6NvcZeg/bu4LOdcu59FFqhZzKwxLlo9bMCWxdDbPlFywZCsxSAophMRb0ssTfVpA4Va1OHrROzQ9WorX5V6PJuMzZ41Wummtsy7Ls7xpCWeAM1ZrY6yA9fhorZQ2Gjzq0cc6SK0TTlh8CGGscQFLH+i5vILLTuZC68UiWcNdhMVmC2VcDlKBhFKalqS6uLziEdipFAy0gdhks+jyKiVuDASbiXlmJEvKp+JihnAmK1Hs4yjap+XT+bnMpppxCuwHcLebQwSIsgmtmMEqXXewG5b+9ism+YBJhBJaGDjqRCZysUguLwo/6wWms4wlu2VBU2BdMVhMJeMwYSWL1fP6bv95s46+sm+7cv+8W/8SRV/JBsl+p17GuGaxnFtPScu4ZbGaK/tn8l4W0T5eycZ09X1W9wxL86lhPIhnrbwTS9XJa65uh1vI3cvx+nsnVwbyZKU6Bw6fPu8ekvLu06bzpPq8hnb7PQi7IIvawYY9a/mW+HBXsqlXNRD6QfxuU0GPFGOti+NKFz+iM2fxVjZrq6Za3iC8cE5FKoF+illQwzh4uuZpWh3wkvsdliI4C7vgMevP70E8iPWcoujm2RGEdN6KWd+M9PIKu1ZiBlUsb6soc3n8sPkj+DyVTufegTPk0kwquNG6JqEVy4SRutgt1/ebx2gwpwxh2arGbT11ujef8RuWsoZ22/n5Po3Kp5jmwLS0NSDTtDFb0UL1RKphw7L+iIatc+PZLI1Q0ZAqlCWr5UNJezrknXBIvK2+bh1CPAB3MbKITRV2MTI8qR6OjRkE8eUgDLmmyfxoP23SkR2Pejddymc3MRkLBWRt3DP8dlmvf69kbM310AgpFT8NEnnYqwh12OpH0X6xvEqAhbCvKG6gIieobLUnJ21RymAzfDhttJKOgP/A8Fr1jxpfTzB0gGM14+jyggvQtAS3yxSkFyf7CvWbqrYzVLn9wWO06yq4QQbcxLtlKvMzrZLngMdR4rF0sNHZ1uFth58Cf6iKCAb1bB4mEutvSMok6bMIu5gync6E1J1Jx8c6ZieUZLY9QLwSqc6obvRLms9sJL+PBWT43pCsK8oRfyQrl1nTj0Pm3VIGYfAl/3UUrUHAJtuKagTwqEqLzPXPRxvwlHWpdtNW8+tIQ6GlkgCTeUQcSq6qxLEfRSuRopZQCnPqo9yE3XPmi0uQ+g0yhsBaX2hQlPi1QO6Hf367TPw/31eB7DrPFRa4fq97760HtB0gDzWH3teNxtF/W0Jy+ApsQyvh9xTWCWWXkW3hD8cJPRxFf9B/T40cNKptVGCqhtkw6p5qtODRo/64bR7Jhy3JzQhvjozrj/eyGvdG/8/06FHjtlnH/lof2Q/j1px4JB+2atTKIzaf4v/ruJxo9QsbQpp5l0Mu9aI1TDt1LAY1MsTrSMrq0Jhx5qpuRtPl8cCjn5bb+64kVXaTlI90NxK4G+FilOOhnpBU0ZWv6HH52C/qRL6o6zVmUNp7wFF1/2/qu++cKttvhfuNfivcb4X7JynGP1aiq7Iq6At2qnC14FSYU5nN6boBCV0dOLXt9cLiwhduFyYfSrK/ldCvLH0RJsvnTvvJBuPpB4nUCB7hVrGkG+GXp/7vbf7yhXrPpjndJkaIRUD4k6EGsZR+DmyQh+5beNClhMkHug5dgW91NaChrrLR5WpdWmRqoKtBKNnpakCkK1xy/K8SRE6SSQX6obxa7svJO2OkEH/+BQ
4891
4999

4973 Reply
0:38, bandicam 2024-11-16 17-31-27-639.mp4
(4.09MB, 1360x768)
I found a discrepancy
4980
>>4973
Fixed, thank you.
4987
I didn't know you were playing my song?
4991
5020
bandicam 2024-11-22 15-19-29-027.png
(30.18KB, 826x258)
>>4980
can you fix this?

4981 Reply
Screenshot 2024-11-16 at 12-20-12 Bytebeat composer.png
(449.19KB, 1918x941)
i swear there was a fancy name for this but i forgot

g = x => sin(x*10000/(20000+(x % 100000)))*32 + 32, s = x => ((50000 ** 2 - ((x % 100000) - 50000) ** 2))/500000000, n = x => g(x)*(s(x) ** 0.5)/5, new Array(10).fill(0).map((x,i) => n(t/7+10000*i)).reduce((a,b) => a+b, 0)/5

4939 Reply
dfgh.png
(276.26KB, 1195x901)
Angry Jolly Is Coming For you t*t/(1+(t>>10&t>>7))&255
4952
is he?
4962
>>4939
the jollibee mascot from my country became a fnaf ahh character 😭

117 Reply
track (5).webm
(449.66KB)
129 posts omitted. Click Reply to view.
4779
diddy.webp
(5.84KB, 352x352)
da link
or this..
t?4*tanh(a+=b+=(((c+=d+=(2**([-2,18,-2,18,-3,9,6,-3][7&t/5200]/12)-d)/300)/480%1-.5)*(1-t/5200%1)**.1-a-b/2-2)/18**(1-cos(PI*t/12e3)/4))+3.82+sin(3e5/(t%(n=20800)+3e3))/2*(1-t/n%1)**3:a=b=c=d=0
4836
4904
4920
>>4904
forgot to mention, this is a remix of ANoUserXD's remix of Cuborz-315.
4956
Screenshot_2024-11-12-23-03-24-722-edit_com.sofarsogood.incredibox.jpg
(62.63KB, 341x550)

4941 Reply
dh0tb13-4f664d5f-7afd-4c76-9bc0-495758a597e2.png
(324.44KB, 1201x901)
ALL THE DAY WITH MAXIE
(t | t % 255 | t % 257) + (t & t >> 8) + (t * (42 & t >> 10)) + ((t % ((t >> 8 | t >> 16) + 1)) ^ t)
(t>>2&t<<7)*t>>6
4943
i've never seen someone from uruguay..

4940 Reply
dh0tb0c-6408a6bf-76fa-4a8c-b1ab-4af6105103e1.png
(300.05KB, 1201x901)
Posion Have CRazy (16)

4938 Reply
dh0tb0c-6408a6bf-76fa-4a8c-b1ab-4af6105103e1.png
(300.05KB, 1201x901)
(t>>2&t<<7)*t>>6

756 Reply
Screenshot 2023-04-03 153532.png
(16.68KB, 1025x257)
Yes, It is I...

anyway Here's a remix of one of Tejeez's songs

I've retried like 5 times by now :p
259 posts omitted. Click Reply to view.
4750
you can also divide t by 3 and change the sample rate to 36864Hz to make it more high quality

why divide t by 3? well, i like to keep my sample rates at/below 48kHz.
4768
what it says.
Post too long. Click to view.
4771
Deltarune Chapter 2 - KEYGEN, YouTube.com
Post too long. Click to view.
4802
4926

4919 Reply
Custom.png
(4.54KB, 320x200)
(500 * (2 * t >> 8 | 1 * t >> 1));

4918 Reply
Custom.png
(4.54KB, 320x200)
(500 (2 t >> 8 | 1 * t >> 1));

11025Hz

204 Reply
MBTL_Neco-Arc_Art.png
(312.22KB, 818x1280)
477 posts omitted. Click Reply to view.
4428
3046bb872514c4f23e42241e77cb1fba.jpg
(10.37KB, 214x236)
4431
198ac798260cccb84c4cc73742e63296_21618059523895449
(973.06KB, 196x238)
4762
>>204
ngl, this thing sounds like it's stereo even though it isn't.
4803
p.png
(383.67KB, 432x432)
>>1759
this sounds like some Funcbeat shit StephanShi would make lmfao
4885
2024_09_30_0vj_Kleki.png
(12.83KB, 768x768)
>>2057
> unrealistic XOR dubstep
remixed your bytebeat to make this absolute banger of a bossfight
BPM=200,SAMPRATE=40960,c=(x,y)=>x%256*(y),T=t/SAMPRATE*BPM/60*16384,fd=(x,y)=>x%256*(y&2047)/2048,I=3,err=0/0,A=[err,err,1,1,I,I,1,I,1,I,err,err,I,I,1,I,err,err,err,err,I,I,1,I,1,I,err,err,I,I,1,I][(T>>12)%32],B=[err,err,err,err,I,I,1,I,1,I,err,err,I,I,1,I][(T>>12)%16],ABsnarehi=fd(t*tan(t>>[A,B][(T>>17)%2])/8&128*([[err,err,1,1,2,2,1,2,1,2,err,err,2,2,1,2,err,err,err,err,2,2,1,2,1,2,err,err,2,2,1,2][(T>>12)%32],[err,err,1,1,2,2,1,2,1,2,err,err,2,2,1,2,err,err,err,err,2,2,1,2,1,2,err,err,2,2,1,2][(T>>12)%32]][(T>>17)%2]>0),-T>>[2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,/**/2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2][(T>>12)%64]),A=32768,ABkick=((sqrt(T%(A/2**[-1,-1,,,,,,,,,2,2,,,,,2,2,2,2,,,,,,,2,2,,,,][(T>>12)%32]))*64)^(sqrt(T%(A/2**[-1,-1,,,,,,,,,2,2,,,,,2,2,2,2,,,,,,,2,2,,,,][(T>>12)%32]))*16))%256|0,AB=ABkick/2+ABsnarehi,part1=((T?(n=(p=t*2**('00113317'[7&T>>14]/12),p^p*0.5>>!(T&131072)>>3),l+=((n&255)-l)*(-cos(T*PI/8192*'22334628'[7&T>>14])+1)/2):l=0)/128-1+(T>>19&1)*AB/128)/3+((T?(n=(p=t*(2**(1/3))*2**('00113317'[7&T>>14]/12),p^p*0.5>>!(T&131072)>>3),l+=((n&255)-l)*(-cos(T*PI/8192*'22334628'[7&T>>14])+1)/2):l=0)/128-1+(T>>19&1)*AB/128)/3+((T?(n=(p=t*(2**(2/3))*2**('00113317'[7&T>>14]/12),p^p*0.5>>!(T&131072)>>3),l+=((n&255)-l)*(-cos(T*PI/8192*'22334628'[7&T>>14])+1)/2):l=0)/128-1+(T>>19&1)*AB/128)/3,part2bassM=(t*2**(parseInt('87CF'[(T>>16)%4],36)/12)/4%256),part2bassA=(c(part2bassM,abs(((T+262144)/32768%16)-8))/2%256)/256,part2bass=b=(abs(((c(part2bassA*128%256,abs(((T+262144)/32768%16)-8)*2)-128)%256)-128)%256)/128-1,hI=(t*2**((parseInt('15C15CA804A04ADC58F58FDC37D3DCAC'[(T>>13)%32],36)-1)/12)/1.25)%256/256,h=c(abs(((hI^1/hI*64)%256)/128-1),hI*4)%1,part2=part2bass/2+AB/256+(T>>19&1)*h/1.5,part3=((T?(n=(p=t*(2**(1/6))*2**('00113317'[7&T>>14]/12),p^p>>!(T&131072)>>3),l+=((n&255)-l)*(-cos(T*PI/8192*'22334628'[7&T>>14])+1)/2):l=0)/128-1)/2+((T?(n=(p=t*(2**(-1/6))*2**('00113317'[7&T>>14]/12),p^p>>!(T&131072)>>3),l+=((n&255)-l)*(-cos(T*PI/8192*'22334628'[7&T>>14])+1)/2):l=0)/128-1)/2+AB/128-0.5,part4=((part1-part3)*2+h+b)/2,X=[part1,part2,part3,part4][(T>>20)%4],throwfunc=x=>T&1023?0:(()=>{throw x})(),X+throwfunc(" \n X's Rooms OST - is X_Roomskid enraged..? (X_Roomskidd bossfight phase 2)\nbar: " + (((T>>20)%4)+1) + "\nprogressbar: " + ["||","|=|","|==|", "|===|"][(T>>18)%4] + "\neach '=' is approximately 25% of progress")

Post too long. Click to view.

4884 Reply
hjcbz yfif cnhfyf.png
(40.13KB, 1030x690)
some remeik of melody by stimmer
t+=sin(tan(t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127))^t,(t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127)|8000/(t&4095)

(5 kHz)

4868 Reply
google-translate.png
(45.10KB, 1600x732)
EXPERIMETS WITH 'Altered running man'

add drums
 t*(3+(5&t>>10))*(4+(t>>17&1?(2&t>>14)/3:3&(t>>13)+2))>>(3&t>>9)|t>>3 


somethind like 'the 42 melody'
t*(3+(5&t>>11))*(3+(t>>17&1?(2^2&t>>14)/3:3&(t>>13)+1))>>(3&t>>9)|t>>3


let's get closer to 'Another attempt at melody construction'
t*(3+(5&t>>10&5))*(3+(t>>17&1?(2^2&t>>14)/3:3&(t>>13)+1))>>(3&t>>9)|t>>3


wow what a beat!
t*(3+(1&t>>10&5))*(3+(t>>15&1?(2&t>>14)/3:1&(t>>13)+1))>>(3&t>>8)|t>>3 


add "t&16384?6:5" and edit temh
Post too long. Click to view.

4856 Reply
77d9e3ad5cf79a8044619623c7383d64 in full HD 1080 p.webp
(31.51KB, 1280x917)
funny remake of a 'Good old fractal melody'
x=(t>>9^(t>>9)-1^1)%13*t,c=4000/(t&4095),
(x-c)+(sin(x)-c)^(c-x)+sin(x-c)

4852 Reply
nick-pope-la-desclasificacion-oficial-ovni-es-inminente-portada exe.jpg
(254.32KB, 1907x1080)

4842 Reply
og_og_1492605328256537764.jpg
(67.83KB, 1200x574)
my first remake of 'CA98'
 t*(0xCA98CA98>>(t>>9&30)&15)|t>>8|4000/(t&4095)|t>>(t&4096?8:9) 

captcha: noeueuj
4851
чудовище.jpg
(118.53KB, 1280x720)
>>4842
 t*(0xCA98CA98>>(t>>9&30)&15)|t>>8|4000/(t&4095)|t>>(t&4096?8:9) 


a better version

55 Reply
stone_500k.gif
(3.47MB, 256x256)
I have made a few Bytebeat songs posted to Reddit over the past month or two.

Here are some of my favorites.

creepy droning static thing

1fccccf1


plucky sierpinski

Crude Sinewave Dubstep Remix


Doom E1M1 theme recreation
Post too long. Click to view.
42 posts omitted. Click Reply to view.
3550
2024_05_31_0ju_Kleki.png
(794.88KB, 958x966)
3917
>>359
i shortened your 19-char dubstep to 11 chars

 t/(t&t>>12) 
4215
>>199
lol
4224
>>3917
this actually has a very little difference
l+r comparison
4848

4845 Reply
1427190171_1982925442.png
(32.27KB, 1367x610)
attempt creat a compact JS sond
 x=sin(t^t>>8+(t&t>>7))+t&t>>8,c=t>>12&t,
x+c+t&t>>8 


4839 Reply
cj,jrf.png
(108.10KB, 1672x668)
(t&t>>12&t>>11)-1
радиоPомеха
 (t>>2)*(t>>9)|t>>5 
ambulance on Bolshevikov Avenue
(t&t>>10)-(t>>4>>t>>5)

not bad for some viruses like 2MASS J07225830-2546030.exe

4767 Reply
unnamed.png
(38.40KB, 240x240)
4795
4798
4837
download-windows-10-icon-15.jpg
(251.56KB, 1024x850)
>>4798
oh thanks for the remake
what the captcha butuhih

4830 Reply
download.png
(52.59KB, 360x360)
5*t&t>>4|t*(5|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4831
7122.png
(332.79KB, 750x650)
10*(t>>6|t|t>>(t>>16))+(7&t>>11)*5*t&t>>4|t*(5|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4832
download (2).png
(123.62KB, 320x320)
5*t&t>>4|t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4833
Screenshot 2024-10-28 11.56.50 AM.png
(36.57KB, 438x331)
t%25-(t>>2|15*t|t%227)-t>>3|(t>>5&1333*(t<<5)|(t>>3)%1)/(t%18|t%1280)

what is three and cant pour tea
4834
mickey_mouse_running_vector_by_naufalisback_dgkmunm-fullview.png
(177.11KB, 530x440)
~t>>3&(t>>11&1?5:4-(t>>12&1))*t&(t>>7)+t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127>>(t>>(t>>12&15))>>t
4835
u1f4af_u1f4af.png
(6.07KB, 534x535)
what has fangs and pours milk for its children, it has many spots and drinks the juice of bodies, the red.
we take its milk to drink, and pour in our delicious lucky charms, what am i?

4826 Reply
3fdbde127f955aa49d23e37485ea6eff.jpg
(34.26KB, 1024x546)
triabeat

x=(t<<4)^-(t>>4&1),
(x>>5|x>>4)>>(x>>16)


like 'stand, back, you...'

captcha: sujo
4827
слишком много смысла.webp
(31.46KB, 1200x542)
if you put
 x=(t<<4)^-(t>>4&1),
x*(x>>5|x>>4)>>(x>>16) 

then there will be a new bit
'pirife'

284 Reply
adwta-t1ki9.jpg
(3.85KB, 763x608)
221 posts omitted. Click Reply to view.
3282
pichaku.jpg
(64.47KB, 500x814)
4289
4621
>>1117
https://dollchan.net/bytebeat/index.html#v3b64nVXvbts2EH8VzkBcymZskZRkOYg8OE7SFFjboE2wD3GGyhZnE7ElR6LjuOu+7hn2fHuS3VGW/6RoVwwGdTze8e53x7vzH7VxlqjaSa3dJu+vLz70b95/+HgyTIdpEhk2TB8j+u72LdPcc6IeNb0ecE4dWJD1I/e5D/QM6BnQAdAB0HOg50AvgF4AvQR6CbTQqVrFTyqimmnBtGQareoGCKgWbS2dpkbDD3r8AEo+0wHTHVTx29TUdQCeOyBfxMaoPAWVkOkugHNRJ7xDfLrrHMHBPaihr2xh9Fx/Vjkocw6qAlU5hxAEqOSR5jLqmUYep0k2pxiaxLBFBIEKkJye4gaPJJoATBxAcUQFiLj/M/AnwIPGBIyFcAwgeAj8eBrnmF28ByiFC4tb990WygYg6xtqUQsXYIMUriX6SeOlN++ub28YeJdwxzJtZEBjvpwZvZitNzoClbxKSTSQQ63YTBfZKtIC4ngLTAs4yLNwNsLxKDcglRspsiCWKB5pM1KxiaxFubEsT08xzESN4zWmx496/NgcUe4Kz6bJd9r7TKUrbA0FiNKmDcMI9q519q918JrJdZxOZmW1vEkXSxP14lFB7fZI+MExFyEqDlOs29sbQGeLtsoMTdimSOidywS7Z/D4wmnuHYZwJl+cSQGHPhw61nSDDKbxbKbSiTohv+baKBKTIksnZKXNlJipKhTJFiqPTZYXZJ0tyUrlikz0k0pb5Ar3Mawim8Mnni9mqiAmIxNlSGHi3KiktHRdLDHdNgSStL1eDz5fHqlgwvcdQsOHq88WEjmoaVpBH9ZCryP9sOMNa4xDbE4jaYj2TsyFtCKPeQ57pF1r98Bw5azxSH27+VJt9rVo8hsHHfoIP2gg2JeW6sdwIqnndgOGSf3qYtLYprnPztiAnbMLdom/e0QVojswEPi+DJjH/K8tHEa+szesSc8PuAg6GKAoTZXIm/+htUO88cd4V4BTIVzf3SI/okmbVjmDW1g1GPMPobsTEI1dLZ/5m69kQbmA65RfW6A8AARQ2M1Da2AO082t2/oegP3oBHchsi6+Lxed72KjSX1rzmGB5zS56zZw6FKpJIOU+Iy/eD0Ko73fDavV620zUvc8p85tZsIyRdaSp7zSEh6hEWvoFz3K43xdFjolDvaTxr4o+4FQaLhi/fwM3qUo3ZNtTx/GsT8j6K7v7fCkhr0Imk0+cf7JwWcOMGiYcp5DYHgkySCvt4lZLxTBHiSjpSE6JdY9I6tsVWL95++/HDLIsgdSJ+dZ+sqQAbY2XUDrFmOdjxRgztVcP5PsdzKsFeB6rvJhbT8UWv0F0sBjLzEn+Hb/o24k1g0E5rY8H18T52PDDl4qHaf5jTwxOoFCcurwxVI6vLV9nis1m2VkviZpDCNMFxBBtszHGOvrmRpNlmsz1elkP/StxmhNnhcx/Os/qV0xQSlBhWNLAcG2sjXTlrax3KquUWWHx74TWE2Tgkxm2oyn65+2CD+WebbPhnPW4nlVkFWOc/qbKA8fqAL3A13cYR6sisqWYEHL26PVy8h7HMTf6ejDEztO7QjateZBg3svGhwT0GjX/vwX
4687
RDT_20241015_1945538114555583182247932.jpg
(66.40KB, 828x717)
4811

4796 Reply
Captura de pantalla (10).png
(168.78KB, 1366x768)
4801
wait you're chilean too??

44 Reply
Hello! I've been doing bytebeat on and off in the recent times and I decided, why not, let's just share it with others for once! The way I will be formatting my bytebeat songs in this thread is as such:

Name: (Name); Date: (Date); Sample Rate: (Sample Rate)
(Code)

Description: (Description)

The songs will be grouped up with a quality value ranging from 0 to 3. The quality value shows how good I personally think the song is, and the rest of the info is generally self-explanatory. One thing to mention though - if the date for the song is "-", then the date is between 28 April 2019 and 12 March 2022.
Either way, here's my list of bytebeat songs!



Quality value: 0


Name: (testing)1; Date: -; Sample Rate: 8k
Post too long. Click to view.
24 posts omitted. Click Reply to view.
837
Hello!

>>551
> This is definitely remixed "Namber tu use square wave" or "Song for sega CD \(≧▽≦)/"
Unfortunately not. It's actually a rough recreation of the starting synth of an old tracker song named Unreal Super Hero 3. Decent guesses, though.

It's been a year since my first post here, and even though I don't really have anything special prepared, here are some more bytebeats that I was able to complete in the meantime!
Most of the codes in this post are remixes of codes made by others.



Quality value: 2


Name: autochxrded; Date: 28 March 2023; Sample Rate: 32k; Self-defining?: Simple; Type: Bytebeat
Post too long. Click to view.
1367
Hello!

Not many songs to offer again, as I'm getting caught up with other things and motivation has been a bit low, but here are some more songs!



Quality value: 1


Name: preciserr; Date: 21 April 2023; Sample Rate: 32k; Self-defining?: No; Type: Bytebeat
x=t&t>>12,y=t/4096,z=!(~t>>13&15),(y/x%1==y%x/x)*(y/2**!z%1)**.5*127+(50*(t%2**(13-z))**.5&128)

Description: A song created with the use of precision errors in floats.


Post too long. Click to view.
1481
viktor-kro-tylerwest0121-1.jpg
(298.27KB, 800x1000)
>>837
autochxrded - Nice chords! Thanks for pointing out the original by May_I_Change_My_Name, I can't following reddit because of the huge amount of flooding and informational garbage from reddit children, and thanks to you I found a good post with interesting technology.
C0D3R4V3 - Heh, you also could not resist remixing the song by Decent-Manager-6169 ;) Useful sliding technique! I need to use it too.
skyrnpqriy - The sound of a synthesizer is similar to an electric guitar. I like the semblance of percussive harmonics that start at 14 seconds.
Beyond Saturn's Rings - This is something incredible. Such beautiful space theme, pleasant harmony! I see delays, echoes, slide effects, vibrato, a lot of cool tech. Long echo tails pick up some background noise, but that sounds good too. And nice description :)
I was very imbued with this song, I listened for a very long time. Such a soothing lullaby. You have a lot of beautiful songs, but this one, in my opinion, is one of the most beautiful.
>>1367
preciserr - Boosting error, interesting. And you added drums for beauty. By the way, the formula can be reduced by 4 bytes if use floatbeat.
name melody - At first I looked at the extended version, and did not understand why name[StringAsArray] is used. Then I looked at the N[c] in minified version and understood, good! Also, I substituted my name, turned out funny.
ventures - Very pleasant sounds! Nice chords. Also, you can use sin(a(p)*PI) instead of 2*asin(sin(a(p)*PI))/PI, the sound will be same.
Niarix Visions - Cool, 90s rave style, I like long songs with changing sound. I see you applied the min() and max() at the end to limit the sound. Because of the kick, right? Usually I scale each instrument by multiplying by factors so that when layered on other sounds, they do not exceed the limits. However, the song will sound quieter. And your song does not sound quiet, and the kick is juicy! Nice work.

Message edited: 05.07.23 Wed 02:00:39
4788
what happens if t is equal to the 32 bit integer limit (2147483647)?
5023
>>4788
nothing happens

4786 Reply
27498048-6s5hcqd7-v4.webp
(13.35KB, 462x522)

2971 Reply
KV39.png
(3.41KB, 514x257)
Kevvviiinnn Stage 39 Remix
(([1,1,2,3/2,2,9/4, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 8/3, 8/3, 8/3, 1,1,2,3/2,2,9/4, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 8/3, 8/3, 8/3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 9/4, 0, 9/4, 9/4, 19/8, 8/3, 19/8, 9/4, 2, 0][(t>>13)%64]*t>>2&127)+(t>>7)&128)+([2,1,2,19/8,2,1,2,3,2,1,2,19/8,3,2,2,3, 2,1,2,19/8,3,2,2,3,3,2,2,19/8,2,2,2,3,2,19/6,3,19/8,2,2,19/8,3,2,2,19/6,3,19/6,2,2,3,2,3,19/6,19/8,9/4,2,3,9/4,9/4,4/3,2,19/8,9/4,3,4/3,2][(t>>13)%64]*t>>2&255)/2^(128*sin(8191/(t%16384))^32*sin(4095/(t%8192)))
109 posts omitted. Click Reply to view.
4508
cat-litterbox.gif
(3.75MB, 360x640)
4513
vf1ykl4dsu4z.jpg
(110.75KB, 1078x1045)
4520
4533
>>4508
also, here's a minified version.
no way i got "temu" as a captcha??!1/1!<
4775
Discord Profile (October to November)@2x.png
(16.00KB, 1000x1000)
It's a while I touched Bytebeat, due to a lot of stuff going on, especially the LTAR race to episode 50 (Which has a lot to do about elevators, sorry). But anyways, Here's a prototype of my upcoming remix, based of a Sonic Frontiers Song, I listen to:

Initiate

BTW, I have to finish Relic Maze 2 before going to the more complex parts. I'll be uploading the video to the Semasis YouTube Channel

Delete Post  
[Previous] [0] [1] [Next]

Changelog / Common thread / SthephanShi / kOLbOSa_exe / lhphr / PortablePorcelain / HypernovaHeathen / BaenHoHoHo / SArpnt / hcdphobe / OnixIsThePewterGod / Zackx / GetDolphinedLol / psubscirbe / ChrisRM380 / Kouzerumatsu / MT2023 / Decent-Manager-6169 / Chasyxx / Glebguything / absolute197 / ANoUserXD / MarioFan171
To top