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.
  • 965 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.
456 posts omitted. Click Reply to view.
4958
4961
>>4960
what the fuck??????????
4963
>>4960
what
4968
4985
>>4984 is probably the best I ever made so far

2628 Reply
Four_intro.png
(27.31KB, 1206x1277)
224 posts omitted. Click Reply to view.
4964
4982
4983
4986
4989

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
167 posts omitted. Click Reply to view.
4715
everycopyofbsodispersonalized.png
(8.92KB, 640x480)
4723
4724
BadPiggies_FreckledPigIcon.webp
(2.51KB, 93x91)
4913
4988
arrow144.png
(240B, 32x32)

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?

4595 Reply
b08vjj51ozpd1.png
(156.77KB, 575x581)
5 posts omitted. Click Reply to view.
4895
4965
dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKtHSKLGz0wARhkaaqhaaNUCWhSZQCCRipqlUCwA
4966
4967
4984

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

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.

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.
49 posts omitted. Click Reply to view.
4909
0:43, heydharrmanfans.mp4
(2.24MB, 652x360)
>>4907
i was so used to the old library - i was flabbergasted (a little bit) when i saw the new look 😭
will there be an option to go back??
4933
when will the sending form be released
im not trying to beg or anything, im just wondering
4953
>>4933
the sending form?
4959
>>4953
of course
also the captcha i got is umiooz
4971
artworks-gR55C9p0uW8ySTud-rfjiqA-t500x500.jpg
(81.75KB, 500x500)
>>4933
So that you and reddit children can spam the entire library with garbage? I can imagine what a mess this will all turn into.

Message edited: 16.11.24 Sat 18:32:51

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

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==
136 posts omitted. Click Reply to view.
4810
0:16, 5md6p54oa72.mov
(1.11MB, 576x1024)
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

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
194 posts omitted. Click Reply to view.
4928
2024_11_10_0to_Kleki.png
(1.70KB, 64x64)
4929
fjgrt6gujutgyk-removebg-preview.png
(46.97KB, 310x351)
>>4928
rahahshuidfhgmvu9rhsfhy90etby
IT'S ACTUALLY MEANT TO BE 10240 HZ, DUMB ME-
4930
>>4929
lol
4934
2024_11_10_0tj_Kleki.png
(2.13KB, 128x128)
4935
2024_11_10_0to_Kleki.png
(1.70KB, 64x64)

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

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
26 posts omitted. Click Reply to view.
4421
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

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
69 posts omitted. Click Reply to view.
4974
4976
4977
4978
>>4977
i meant shorter version
4979

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)

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
207 posts omitted. Click Reply to view.
4607
credits for the original code to justaboutdead
link
var tau = 2 * Math.PI;

function sub(wave, mul, time){
  return Math.sin(wave * mul + tau * time);
}

function sin(x, time){
  return Math.sin(tau * time * x);
}

function timeri(x, time){
  return abs(1 - (2 * time * x) % 2) * 2 - 1;
}


return function (time, sampleRate) {
	   var n = sampleRate / 500;

  var bass_osc =
    0.24 * timeri(n, time)
  + 0.052 * sin(n * 32, time)
  ;

  var bass_sub =
     sub(bass_osc, (1 + sin(1.1337, time)) * (2 + (1 + sin(0.42, time)) * 15), time)
  ;

  return 0.3 * bass_sub;

}
4608
>>4607
i could port over other ones but the ones that are too complex (ex: got some 3O3, unexpected token) i cant
4609
>>4608
wait a minute i just ported unexpected token
link
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)]

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'

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

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.
23 posts omitted. Click Reply to view.
551
flat,750x,075,f-pad,750x1000,f8f8f8.jpg
(178.46KB, 750x1000)
>>481
Hello my friend!
Finally I got around to listening to your songs. As always, your code is one of the most technological and advanced among all the authors. I was always surprised by your code solutions.
> Fewer songs than usual with this post
For me, quality is always better than quantity.
> If this is still a bit too complicated, I can change it back to a simple Yes/No
I just needed clarification, thank you.
t% wub - For me it sounds very similar as your idk it's "t%" with 16kHz.
Doomcall - Wow, this sounds like a guitar track! Cool distortion. Btw, you can replace for(i=0;i<4;i++) with i=4;while(i--) and save two bytes more :)
Trackertime - Familiar theme, I also played a lot with "the coolest song" by Rio zack. And well optimized! But after 320-330 seconds the snare starts to distort in your song. Also I thought a little, and found how to get rid of 4 more bytes! Here is 251 bytes version
HARSHSLICE - This is madness, hehe.
Trackermystics - Cool song with instruments progressions! By analogy with the previous method, it was possible to reduce 5 bytes. Also at 124 seconds the song goes up in pitch, which is cool.
the throwback - Beautiful space echoes. This is definitely remixed "Namber tu use square wave" or "Song for sega CD \(≧▽≦)/" by Rio zack. Correct me if this is not the case.
extended Ievan Bytebeat Polkka - Hehe, fun continuation of the theme. I like that you didn't change the sound and just continued what May_I_Change_My_Name started, but with code optimization.
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)?

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

520 Reply
unnamed (2).jpg
(8.89KB, 640x640)
95 posts omitted. Click Reply to view.
3932
artworks-aORYg3KhfpMJDYq5-MfVRSw-t500x500.jpg
(29.51KB, 500x500)
>>3929
polish anonymous
hmm
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 квадрат бьется

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

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
75 posts omitted. Click Reply to view.
4639
4640
4685
4732
4747

4744 Reply
IMG_20241026_090123.jpg
(268.65KB, 720x720)

4735 Reply
4424616.png
(41.95KB, 512x512)
I am back and the computer I am writing this post on has been repaired WITHOUT ALL APPLICATIONS (except those connected to the system and Yandex)

but there is good news I have a couple of bits

the best remake of 42 melody
(my version)
https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKtHSMDFSK7GzMzTQrNHQKFGz0NQq0dTWAIqYaCrVAgA

some like 40-48 s of in() isn't kosher, people!https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKrGxMVLTLbGzM6kBEqZKtQA

my sierpinski harmony
https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJS0jDRKlErsbOzqAES5iCWiaZSLQA

4731 Reply
hush - [bfdi music visualizer], YouTube.com
My Remix of 'Hush'

Cover of ['Hush' by YOYLECAKE Michael]
(https://www.youtube.com/watch?v=XCeNSQJserE)

4712 Reply
20230128_140518_425_R.M.S. Britannic (With Ropes) - by Michael Bozarth.png
(1.20MB, 1360x740)

4691 Reply
wait wha-.JPG
(3.73KB, 86x120)
maeme.jpg
(33.35KB, 460x345)
4695
you're mineralcoinboi224, right?

4680 Reply
20230415_220213_767_S.S. Bjeli Orao 2 - by BeamierBoomer.png
(803.92KB, 1366x597)

4675 Reply
20230304_125037_744_S.S. Washingtonne Star.png
(1.10MB, 1360x740)

4668 Reply
20230304_124730_986_S.S. Washingtonne Star.png
(0.97MB, 1366x683)
((t>>9^(t>>9)-1^1)%13*t)|(t&4096?t/2*(t^t%255)|t>>5:t/8|(t&8192?4*t:t))

attempt to repeat "Noise Maker" by by Gabriel Miceli

30*cos(t*2**('B*918/916-918/91B*918/916-918/91>*;2:1;26/;2:1;2>*;2:1;26/;2:1;2A*;291;28/;291;2A*;291;28/;291;2B*=-;,=-91=-;,=-B*=-;,=-91=-;,=-E*>6=4>692>6=4>6E*>6=4>692>6=4>6D*<3:1<380<3:1<3D*<3:1<380<3:1<3D(=4<3=481=4<3=4D(=4<3=481=4<3=4B(:18/:16.:18/:1B(:18/:16.:18/:1B&;2:1;26/;2:1;2B&;2:1;26/;2:1;2@&;,9*;,8/;,9*;,@&;,9*;,8/;,9*;,@%=-;,=-91=-;,=-@%=-;,=-91=-;,=->*=-;,=-92=-;,=->*=-;,=-92=-;,=->,8/6-8/428/6-8/>,8/6-8/428/6-8/=-412/4192412141=-412/4192412141;-6341613/634163;-6341613/634163;,8/6-8/528/6-8/;,8/6-8/528/6'.charCodeAt(t>>12)/12-7)/4,(t%255+t%128+t%64+t%32+t%16+t%127.8+t%64.8+t%32.8+t%16.8)/3)+128

cos version "Still Don't Know The Name" by Decent-Manager-6169

t<<2^t>>4^t<<4&t>>8|t<<1&-t>>4|t>>6&t>>7

remake of "harmony" by sthephanShi

10*(t>>7|2*t|t>>(t>>16)+(7&t>>12))

what

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