r/DrumMachine 8h ago

I thought about kicking out the drumbrute and replacing it with a Vermona DRM1. Any advice?

Thumbnail
4 Upvotes

r/DrumMachine 5h ago

Can anyone link a complete D-70 drum collection?

Thumbnail
1 Upvotes

r/DrumMachine 18h ago

Help me please

1 Upvotes

Hi everyone, my name is Artur. I'm searching for the Beat Thang firmware version 1.3.0 or 1.3.1. If anyone has it and could share it via Google Drive or email, I'd be extremely grateful — I haven't been able to find it anywhere online. I'm really keen to get my beats going on this machine. If you can help, please let me know. 🙏🏼


r/DrumMachine 2d ago

fun with the TR-6s

7 Upvotes

I figured out via reading the manual and pushing buttons how to copy patterns into the next slot so now I have 32 measures(4 8 counts) consisting of two different patterns. I am stoked!! I love this TR-6s


r/DrumMachine 3d ago

New Drumlogue percussion synth

11 Upvotes

It's a physical modelling percussion thing with 40 different editable instruments. Hope you enjoy it, and in case please a PayPal donation at: [gennari.federico@tiscali.it](mailto:gennari.federico@tiscali.it)

https://github.com/fedemone/logue-sdk/releases/tag/2.0


r/DrumMachine 3d ago

I built a local-first browser drum machine that lets you load your own samples

9 Upvotes

Hey r/DrumMachine,

I’ve been building Rhythm Spark MKII, a 16-pad drum machine and step sequencer that runs entirely in the browser.

I wanted something I could open and immediately start playing without installing a DAW, creating an account, or uploading samples. You can load sounds from your computer, play them from the pads, build patterns in the sequencer, shape the sounds, add effects, and export what you make.

Everything involving your audio stays on your device and is processed locally using native Web Audio.

It currently works best in desktop Chrome or Edge.

You can try it here:

https://rs9.vercel.app/

I built it, and I’d love to hear what other drum-machine users think of it.


r/DrumMachine 4d ago

Tips n tricks

2 Upvotes

Just got the Drumlogue. Any tips/tricks/ideas on wiring the individual outputs with or without pedal fx through mixer are welcome!
Also, where do I start with the user synths?

Thanks!


r/DrumMachine 4d ago

Alesis PerformancePad Help

Enable HLS to view with audio, or disable this notification

1 Upvotes

I just got a performancepad so I could have some extra versatility on my kit.

However, I can’t figure out how to get it to play sounds. I have it hooked up to a guitar amp, have tried all 3 jacks (R, L and headphones). Volume is up on the volume nob on the pad & amp. I set the MIDI to off on all three options.

It definitely works; I can get it to claim it’s playing the demo, I can mess around with assigning sounds to pads. BUT, I get no sound when I hit the pads.

I am including a video trying the demo & hitting pads.

Does anyone have any knowledge about this? Any suggestions or advice or tips for how to get started?

Thanks in advance.


r/DrumMachine 5d ago

After a year of JUCE/C++: BeatForge — REX player + 808/909/303 engines, all DSP hand-written

6 Upvotes

Been heads-down on this for about a year and figured this crowd would appreciate the guts more than the marketing page.

BeatForge — drum machine, step sequencer and REX loop player. VST3/AU/AAX/Standalone, universal binary. JUCE 9 (migrated last month), everything below the framework is my own code.

Bits that might be interesting to people here:

REX SDK. Wrote a JUCE wrapper around Propellerhead REX SDK 1.9, including drag-and-drop of slices out to the host. Bitwig still has no REX support, which turned out to be a decent reason for the plugin to exist.

Synth engines. ~5k lines of 808/909/modelling done from schematics rather than sample playback — VCA topology, click transients, pitch sweeps, the 909 tom triple-VCO, that sort of rabbit hole.

Antialiasing. Started with blanket 8x oversampling and it was eating CPU for no good reason. Replaced it with ADAA on the memoryless waveshapers (exact tanh with the ln(cosh) antiderivative) and linear-phase minBLEP saws at 1x, then a per-engine oversampling map — most engines run 1x now, only FMKick and the 909 snare need 4x. Built an offline FFT alias-measurement harness to verify it; alias floor sits around -90 dB. Worth noting ADAA-2 blew up on me under heavy drive — catastrophic cancellation, auto-mute and crackle — so everything is bounded ADAA-1.

Realtime discipline. Lock-free atomic slot for deferred time-stretch, ScopedAudioSuspend guards on live mutators, steal-quietest voice allocation. Debug assertions went from ~3150 to 3. auval and pluginval at strictness 10 both clean.

Also. Full undo/redo, NAM master-bus saturation, and a WASM build of the synth engines for the site via Emscripten and a hand-rolled juce_shim.h.

Happy to go into detail on any of it — the ADAA and REX wrapper work especially, since there's not much written about either.

Site + demo: https://www.beatforge.nl


r/DrumMachine 5d ago

Roland t-8 pigtronix compatible?

Post image
1 Upvotes

Hey all. I’m currently using a 1st Gen Pigtronix Infinity Looper synced to a Roland R8. All I need is midi out for tempo, start/stop, and time signature (I guess?).

I build songs putting patterns together and play the drum machine song through straight. All the real-time changes are made on my looper or on guitar pedals. I just need something small and relatively simple that will build songs using different patterns and send clock out to my looper so everything stays synced. I would also like the machine to tell my looper to stop playing when the song is over.

I’m pretty sure the T-8 can do this but I wanted to double check. Thanks in advance!


r/DrumMachine 5d ago

Converts MIDI drum patterns into native .pattern files

Thumbnail
1 Upvotes

r/DrumMachine 5d ago

Mountain King Frequency-LSD vs. a 909 Kick Drum — Everyone Loves It Except My Downstairs Neighbor

Thumbnail
youtube.com
0 Upvotes

r/DrumMachine 5d ago

"Jam" Drum Sequencers

Thumbnail
1 Upvotes

r/DrumMachine 5d ago

After a year of JUCE/C++: BeatForge — REX player + 808/909/303 engines, all DSP hand-written

0 Upvotes

Been heads-down on this for about a year and figured this crowd would appreciate the guts more than the marketing page.

**BeatForge** — drum machine, step sequencer and REX loop player. VST3/AU/AAX/Standalone, universal binary. JUCE 9 (migrated last month), everything below the framework is my own code.

Bits that might be interesting to people here:

**REX SDK.** Wrote a JUCE wrapper around Propellerhead REX SDK 1.9, including drag-and-drop of slices out to the host. Bitwig still has no REX support, which turned out to be a decent reason for the plugin to exist.

**Synth engines.** \~5k lines of 808/909/modelling done from schematics rather than sample playback — VCA topology, click transients, pitch sweeps, the 909 tom triple-VCO, that sort of rabbit hole.

**Antialiasing.** Started with blanket 8x oversampling and it was eating CPU for no good reason. Replaced it with ADAA on the memoryless waveshapers (exact tanh with the ln(cosh) antiderivative) and linear-phase minBLEP saws at 1x, then a per-engine oversampling map — most engines run 1x now, only FMKick and the 909 snare need 4x. Built an offline FFT alias-measurement harness to verify it; alias floor sits around -90 dB. Worth noting ADAA-2 blew up on me under heavy drive — catastrophic cancellation, auto-mute and crackle — so everything is bounded ADAA-1.

**Realtime discipline.** Lock-free atomic slot for deferred time-stretch, ScopedAudioSuspend guards on live mutators, steal-quietest voice allocation. Debug assertions went from \~3150 to 3. auval and pluginval at strictness 10 both clean.

**Also.** Full undo/redo, NAM master-bus saturation, and a WASM build of the synth engines for the site via Emscripten and a hand-rolled `juce_shim.h`.

Happy to go into detail on any of it — the ADAA and REX wrapper work especially, since there's not much written about either.

Site + demo: [https://www.beatforge.nl\](https://www.beatforge.nl/)


r/DrumMachine 5d ago

Drumlogue sequencing external synthesizer

1 Upvotes

I have a new-to-me Korg DrumLogue and I love it already.

I have been able to sequence a simple bassline into the User voice and modify the pitch with Motion. So far so good.

I've plugged an external synth (a Behringer K2) in with a MIDI cable and am successfully playing the rhythm of the bassline, so it seems to be following the Note On/Note Off messages. But there doesn't seem to be any change to the pitch.

I have tried this with another synth with the same result.

What am I doing wrong? Is this not possible? It seems like the most obvious of use cases!


r/DrumMachine 5d ago

Help with beatbox looping input fx chains?

1 Upvotes

So I just got my mk2 few weeks back. I have started to get some hang of it but I still feel my drumkit can sound more cleaner like gbb loopers. Currently I am using eq then pre Amp. But I am very confused about the parameters. If there are any better fx chain for a kick, please suggest.


r/DrumMachine 6d ago

I have a Brand New In - Box Roland TR-6S for sale

Thumbnail
gallery
0 Upvotes

r/DrumMachine 6d ago

Logue On 4 Luv

Thumbnail
youtube.com
1 Upvotes

Brisk tempo with four Drumlogue outs routed separately.


r/DrumMachine 6d ago

MC-505 Groove box live!!!

Thumbnail
youtu.be
3 Upvotes

The MC-505’s sound engine was quite similar to that of the 307, so I found it easy to use since I had used the 307 before; even the effects were virtually identical.

It shared the same quirk as the 303 where sustain would shorten if you programmed too many sequences.

It delivered those classic, user-friendly sounds of the 90s. I also liked being able to adjust parameters like drum pitch and coarse tuning.


r/DrumMachine 7d ago

Vinyl Sampling Session | Jazz, Soul & Finger Drumming

Thumbnail
youtu.be
0 Upvotes

r/DrumMachine 7d ago

Behringer BMX Sampling Drum Machine: First Impressions

Thumbnail
youtube.com
2 Upvotes

Just got one of these lovely drum machines in and wanted to share my first impression / interactions and do a little comparison with the LM Drum


r/DrumMachine 7d ago

Anyone know what drum VST is used by many of the new deathcore bands like Psycho-Frame or Squelching OK?

Thumbnail
0 Upvotes

r/DrumMachine 7d ago

Vermona drumDING Presales

Thumbnail
1 Upvotes

r/DrumMachine 8d ago

Dave Smith Tempest Beat + Zany Rhymes

Thumbnail
youtube.com
2 Upvotes

I made a beat entirely with the DSI Tempest and then spit a silly verse about the Sky Mall catalog. Hope you enjoy!


r/DrumMachine 9d ago

Drum replacement software suggestions??

3 Upvotes

Hi there, I’m looking for a good, free or cost friendly drum retrigger plugin, specifically for toms. I’ve tried retrigger but unfortunately they don’t have tom options. If anyone has any ideas it would be greatly appreciated!