Show HN: I built a little online drum machine using 808 style samples
21–30 of 121 posts
Re: Show HN: I built a little online drum machine using 808 style samples
#22Beautiful and simple interface, dark mode would be cool. Appreciate you making this and sharing, thanks.
Re: Show HN: I built a little online drum machine using 808 style samples
#23Can’t get audio to work on iPad (could be human error). Beautiful and simple interface, dark mode would be cool. Appreciate you making this and sharing, thanks.
Re: Show HN: I built a little online drum machine using 808 style samples
#24Woah, I made almost the same thing the other week https://beatmaker.adammenz.com/ https://github.com/patchorang/drummachine
Huh! I love how you can switch between instruments on each track, that's a great idea. Have you tried Tone.js vs Howler? Any thoughts?
I want to build some other browser based audio/synth tools. I'll have dig into Tone.js more for one of those, thanks. I'm re-learning to code with these projects, but the goal is to build a multiplayer web-based modular synth.
Re: Show HN: I built a little online drum machine using 808 style samples
#25A minor suggestion for your export format is to switch from an "array of structs" to a "struct of arrays" layout:
For example, change this:
"steps": [{"isOn":true, "repeat":"1:2"}, {"isOn":false}, {"isOn":false}, {"isOn":false}, ...]
To this: "steps": {"repeat": ["1:2",null,null,null,...], "isOn":[true,false,false,false,...]}
It's not necessarily more compact, but you can iterate over all of the collections with a single index.Re: Show HN: I built a little online drum machine using 808 style samples
#26Earlier quoted context omitted.
> A reset button And 'random' button too.
Oh yeah, adding to my to-do list!
Re: Show HN: I built a little online drum machine using 808 style samples
#27Re: Show HN: I built a little online drum machine using 808 style samples
#28Looks great and works great! A reset button would be nice to undo the horrible mess I made. A minor note, when I load the page I get console warnings about an Audio Context being prevented from starting automatically, but once I click play everything works perfectly fine.
> A reset button would be nice to undo the horrible mess I made. The (...) button next to "Your jam" -> Clear does the job for me
Re: Show HN: I built a little online drum machine using 808 style samples
#29Good stuff! Are you planning to open source it?
Re: Show HN: I built a little online drum machine using 808 style samples
#30Very cool, here's my loop :) https://peel.fm/f3148e6 Now we need more instruments and collab editing and you have fruity loops online :)
Collaborative real-time audio/video/midi platform that supports VST-like web plugins (the WebAudio Module 2, or WAM2, standard)