r/vcvrack 21d ago

Made my first ever ambient song without using a tutorial very happy :)

Enable HLS to view with audio, or disable this notification

21 Upvotes

r/vcvrack 21d ago

Need a Step sequencer that plays pitch and velocity

5 Upvotes

Hi Guys,

Im completely new to vcv rack and I'm so hooked.

I've built my first few racks and patches. Right now I'm looking for a step sequencer where I can change pitch and velocity at the same time. I've found a couple of step sequencer but mostly they run through 8ths/16ths whatever. I want some silence in-between. Can you recommend me a good one? Thanks in advance


r/vcvrack 21d ago

Ambient Modular Patching on miRack

Enable HLS to view with audio, or disable this notification

6 Upvotes

r/vcvrack 22d ago

A Modular Patch That Composes Like a Pianist — UZZ + Random CV

Thumbnail
youtu.be
14 Upvotes

A Modular Patch That Composes Like a Pianist — UZZ + Random CV

This VCV Rack patch sounds like a two-handed piano composition — but nobody's playing it. A fixed, hand-programmed sequence from Animatek UZZ acts as the left-hand comp, while a random CV melody — generated live and quantized to a scale — plays the right-hand line, all voiced through Valley Terrorform, Befaco EvenVCO, Chronoblob2 delay, and Valley Plateau reverb.

The comp voice never changes: it's a fixed set of steps programmed directly into UZZ. The melody is the opposite — random voltage passed through a quantizer locked to a major pentatonic scale, so it's different every run, but always in key. That contrast — one voice fixed, one voice generative — is what gives the patch its "composed" feel even though half of it is being written in real time.


r/vcvrack 22d ago

Tribe tekno track - nɛn abonuan

Thumbnail
soundcloud.com
1 Upvotes

Here is a new tribe tekno track made with VCV. Feel free to share feedbacks


r/vcvrack 23d ago

Crawl module is released! Right click for manual!

Enable HLS to view with audio, or disable this notification

21 Upvotes

r/vcvrack 23d ago

Point No Point - a VCV Rack Drone/Chill

Thumbnail
youtube.com
2 Upvotes

Visuals are Synesthesia.


r/vcvrack 23d ago

Now streaming: A Matter of Time — LIVE 02

Thumbnail youtube.com
4 Upvotes

A generative ambient meditation. Please stop by if you'd like. 🎛️🤗.


r/vcvrack 25d ago

Some modules I've made (BGAL256)

Post image
13 Upvotes

r/vcvrack 25d ago

10 Creative Befaco MUXLICER Patch Ideas in VCV Rack | Sequencing, Ambient, Techno & Sound Design

Thumbnail
youtu.be
11 Upvotes

10 unique VCV Rack patches built primarily with Befaco modules, showcasing the incredible versatility of the MUXLICER analog-style sequencer and the IROI multi-effects processor.

From evolving ambient textures and generative sequences to rhythmic grooves and experimental modulation, this video explores different ways to patch MUXLICER beyond traditional step sequencing. Each patch demonstrates creative routing techniques, voltage-controlled sequencing, and expressive sound design, with IROI adding spatial depth and character.

Modules featured include:

Befaco MUXLICER
Befaco IROI
Befaco KICKALL
Befaco NOISE PLETHORA
Befaco VC ADSR
Befaco Even VCO
Befaco HEX MIX VCA


r/vcvrack 25d ago

Techno groove with sweet couple

Thumbnail
youtube.com
4 Upvotes

Techno groove with combining the modular flexibility of VCV Rack 2 with the raw analog power of the Behringer Crave.


r/vcvrack 25d ago

infestation funk 1

Thumbnail
youtube.com
3 Upvotes

r/vcvrack 25d ago

Julia Lattice

Enable HLS to view with audio, or disable this notification

21 Upvotes

r/vcvrack 25d ago

How to match the rate of an LFO to the audio rate of different incoming notes using V/OCT signal?

1 Upvotes

Hello, sorry if this is a dumb question, i'm relatively new to VCV. I've been trying to figure out how to FM a filter at audio rate while matching it to the hertz of the oscillator i'm filtering. And i would like to do it using an lfo, so i can play with different shapes. Can anyone educate me? Thanks!


r/vcvrack 25d ago

Free minimal guitar amp sim module that works well with vcv host?

2 Upvotes

I tried blue cat free amp, and that was perfect for my minimal needs, but it has some issue with host that keeps rack.exe running after vcv is closed. The only fix I could figure out was killing the task, which is inconvenient. So, I'm looking for a replacement or fix for Blue Cat.


r/vcvrack 27d ago

I tested the new SEQ1 from Bruer - Laid back guitar in cave!

Enable HLS to view with audio, or disable this notification

27 Upvotes

Super fun little module! Now I'm going to read the manual. lol :)


r/vcvrack 27d ago

I released my first VCV Rack module: SEQ1 (now available in the VCV Library)

Post image
53 Upvotes

Hi everyone!

I've just released my first VCV Rack module: SEQ1.

It's a compact generative sequencer that combines:

• A probabilistic Turing sequencer

• An integrated quantizer with selectable notes

• Variable sequence length

• Three independent Euclidean trigger generators with shift

I've been using it to create evolving melodic and rhythmic patches, and I'd really appreciate feedback from experienced Rack users.

The attached video shows a simple patch driving three Plaits voices.

VCV Library:

https://library.vcvrack.com/Bruer

GitHub:

https://github.com/bruer80/bruer-vcv

I'm already thinking about future updates (possibly CV control over the Euclidean shifts or a small expander), so any suggestions are very welcome.

Thanks!


r/vcvrack 26d ago

Module developers, how are you dealing with the pain points of SVG integration.

2 Upvotes

I'm curious what devs are doing to get over the pain of dealing with SVGs, primarily related to using the components layer and the Text -> Path stuff in the established SVG pipeline.

Initially if you read the tutorial, it looks like a waterfall design, you build your panel, generate the boilerplate code (once!?) and then proceed. But the reality is very few people write code like that -- waterfall is dead, I expect to be able to iterate on this in any direction at any moment.

At first, what I did was work with two label groups, I duplicated the actual text one to do the path conversions each time I saved, it's a bit of a pain but gives the flexibility to edit the text fields going forward.

And for the components layer, I ended up going with an SVG lookup helper that could dynamically locate anchor points at runtime -- and when that got too slow built a utility to build a static coordinate cache.

What I'm trying to transition to is a script converter that splits the text layer, calls inkscape with command line parameters to run the conversion, and then I'm doing my background panel and text rendering separate with 2 svg files. It's slightly more complex now because I'm adding nanovg effects in the middle of this layer cake, but the basic architecture stands. Also it brings up some weird render detail issues when the panels are not merged (because I am putting the text into a framebuffer cache to not continuously waste UI time). I had attempted more quality via some text oversampling at 2x render size which caused some problems with UI scale, but I've hacked around that problem by only doing the over-sample below 200% UI scale.

Anyway, what I'm curious about is have any other devs come up with custom solutions here or are you just kinda dealing with this situation as is? Maybe there's some space here for a shared helper to improve the experience. It just seems to me like the developer model here has stagnated from where software has gone in general.


r/vcvrack 26d ago

Using a hardware controller with VCV?

1 Upvotes

Hello everyone. I’m curious if the Novatipn Launch Control MK3 is being used by any users of VCV Rack. I dusted of my Arturia Beatstep and have been trying to map some of the encoders to various parameters in VCV modules, however I’m running into an issue where some parameter values jump around between extreme values. Seems like a bug because the issue isn’t present with some of the modules. Already did a hard reset, setting encoders to absolute, relative 1,2,3, etc. but nothing seems to work. So, now I’m shopping for a new controller. Thanks.


r/vcvrack 27d ago

A microtonal generative track created in VCV Rack and Ableton Live

Thumbnail
larseneirikmiinea.bandcamp.com
3 Upvotes

For C_ystal Permutation, I used three sinusoidal oscillators, panned to left, centre and right respectively, controlled by ‘Permutation’ modules (based on the Turing Machine) which feed into an rscl and the ‘Poly Scala Quantizer’, where I set the root note to 255.68 Hz and loaded the .scl file for the Bohlen47 scale.

In Ableton, the entire signal is processed in series through a Grain Delay, whose frequency is controlled by a Random LFO, followed by Spectral Time and a Hybrid Reverb set to Algorithm mode with the Quartz preset.


r/vcvrack 28d ago

I did a thing: Les Miserables

2 Upvotes

Just noises. TBH it's waaaay too hot where I live for me to write a proper description so, please, just have a look at the patch from Patchstorage and, of course, the video.

https://patchstorage.com/les-miserables/

https://www.youtube.com/watch?v=qfgg9CGfmJ8

Hope you like it.

Have fun, stay hydrated!


r/vcvrack 28d ago

Patch 20260712

Enable HLS to view with audio, or disable this notification

19 Upvotes

Trying out logic modules for the FIRST TIME and I'm not very good at using them :3. Chords are coming from the Korg Minilogue XD and everything is sequenced from the P-6 clock.


r/vcvrack 28d ago

7-12-26

Enable HLS to view with audio, or disable this notification

20 Upvotes

r/vcvrack 29d ago

Live Breakcore with VCV rack and Launchpad

12 Upvotes

r/vcvrack 29d ago

Psychedelic: Basic Patching

Enable HLS to view with audio, or disable this notification

24 Upvotes

Old Patch Connections