Menu Sidebar
Menu

Chris

Hi! I've got a new plugin you can have! These plugins come in Mac AU, and Mac, Windows and Linux VST. They are state of the art sound, have no DRM, and have totally minimal generic interface so you focus on your sounds.

Airwindows Linux

Look down.

Look up.

Your Airwindows plugins are now LinuxVST :D

What, every new one from now on?

No. ALL of them.

NewUpdates.zip (also, the direct downloads: search for individual plugins if you prefer)

(okay, more like ‘currently developed ones that have been VST’: 84 separate packages. Everything I still had code for, not including ‘initial bug versions’ that got fixed but I kept the released versions around because you gotta let people download weird versions if they need them for recall)

This is thanks to Eugene Cherny (who is ech2 on github) who knew how to build LinuxVSTs when me and my brother couldn’t get ’em to work. Open source is cool: Eugene didn’t do that much of the work, just did a script-based system for autobuilding the plugins that are currently open sourced under the MIT license. That meant that I could use the system too… and I did the work of setting it up for every single plugin Airwindows maintains as VST (and a few that are coming up). And I ran the script (currently on my github too) and away it went, and then it was just repackaging everything up. The grunt work.

But as we learned when I had the denormal-bug-fixes to solve, I’m not scared of grunt work, especially when a script is doing part of the heavy lifting. (if anyone can make a script that entirely or in part does a port to VCV Rack, I’ll do this all over again and then the also open-source Rack will have ALL the Airwindows plugins. They could ship with it so long as the MIT license is honored with a credit)

They seem to work just dandy. So at last the promise is honored: all at once, as I sort of expected. And LinuxVST is now a permanent part of what Airwindows does, and increasingly you’ll see MIT-licensed open source (not sure if anyone noticed, but I’m doing the one opensource from the catalog of what’s come before per month, AND all current releases: so the numbers are increasing faster than you’d think. I never said I wouldn’t also opensource everything new that comes out)

Have fun, Linux-mongers! :D

Acceleration

TL;DW: Acceleration limiter tames edge, leaves brightness.

Acceleration

This is a nice little plugin. :)

As requested, I’ve made a dedicated acceleration limiter, like the one in ToVinyl4. You don’t have to mess with Groove Wear, or highpass anything: as a result, this ends up being the ‘high end’ acceleration limiter, mastering grade and useful in situations where ToVinyl might be overkill (ToVinyl was made in an era where I still had to make ‘amazing marketable plugins with lots of features so people would pay $50 quickly before it got all pirated etc’)

Ah, I remember those days ;P

But now, it’s different because Acceleration is free! AU, Mac and PC VST (stay tuned for a surprise on that front) and if you can’t pay, go ahead and use it anyway. If you can, please do because I think the usefulness of me doing this work will become increasingly obvious, and the usefulness of me opensourcing plugin code has also become increasingly obvious. And it’s brought you Acceleration, here and now.

The reason to be excited about that is, Acceleration’s not a simple filter. It pretty much targets exactly the digital behavior that creates Gibb effect overshoots (the reason you often have to pad heavily limited material down to stop it being crackly and glare-y) and would probably work very well as literally an acceleration limiter for record cutting heads. But, in a largely digital world, it might be even more useful because you can feed it any old ITB mix, any weird edgy source material, and it’ll clean up the nasty digital brightness while not sounding like it’s doing anything. Check the video (it should be relatively obvious if you’ve got half decent tweeters) and try it out. The key is to not try and get the apparent volume of the highs to be less: instead, you’re going after the character, or the presentation. If highs seem to be coming forward with nasty spikey extra energy, Acceleration will fix that tonal problem without altering the basic mix balance.

This work is supported by my Patreon, and again I expect to deliver a nice surprise quite soon that will further illustrate why keeping me on the job is nice. I hope you enjoy Acceleration as much as I do. :)

PurestDrive

TL;DW: The magic saturation plugin of subtlety and French House tone.

PurestDrive

The funny thing about PurestDrive is that I didn’t expect much from it at all.

This plugin (now coming to VST and open source) was simply an experiment. I’d been making complicated plugins with things like anti-aliasing, just a lot of calculation going on, and wasn’t sure I was getting what I wanted. It didn’t seem to be furthering the ‘Airwindows sound’. And I’d hit on an interesting tactic, noise shaping for the floating point buss. It seemed to me that you might be able to get a good sound by the opposite to complication: simplifying things, running the math at the highest possible resolution (in this case, long double precision, which is 80 bits on Intel and possibly 106 bits on PPC, which Airwindows still supports)

The saturation algorithm was going to be sin(), which is the smoothest saturation curve you can have. Then I thought it’d be good to get a little more sophisticated than that because I had quite a few plugins based on sin(), so I did this:

inputSample = sin(inputSample);
apply = (fabs(previousSample + inputSample) / 2.0) * intensity;
inputSample = (drySample * (1.0 – apply)) + (inputSample * apply);

That’s it. That’s what makes PurestDrive (apart from some code supporting it, which is up and documented on GitHub as part of making it open source).

What it does is this: it keeps the previous dry sample around, and ‘apply’ will be the combination of that and the saturated one. This makes apply be large if we’re on a low frequency wave, and if we’re doing a really bright transient apply might be zero. Intensity is how we include the slider control (0 to 1) and can also make apply be lower. Then, we’re adding the sin() effect, but ONLY relating to apply: we saturate the body of the sound, but as things get brighter or lower volume, we’re dynamically doing a dry/wet control at audio frequencies, so PurestDrive only throws saturation on dense solid material: airy highs, subtleties, get through more easily. As a side-effect, if our input gets super hot we can end up subtracting a little dry from the saturated inputSample.

What PurestDrive did… was take off and become hugely popular. I didn’t expect that, it was simply an experiment in tone purity and I didn’t think anyone would notice. I knew the little tweak with ‘apply’ sounded good, but I figured the whole thing was so subtle that it wasn’t going to set the world on fire. Yet, PurestDrive developed incredibly dedicated fans, using it all over their mixes, swearing by its tone.

And now, it’s a free and open source plugin, AU and Mac and PC VST. Remember it’s designed to not be a big obvious coat of paint over everything: because it’s using the dry sample so intensely, it cleans up and stays out of the way. But because it’s modulating between saturation and dry at audio frequencies based on both the current and previous sample, there’s a lot of textural effect on the sound. I never got so much mileage out of so few lines of code. Hope you like it. :)

I wouldn’t have been able to get here (releasing PurestDrive as VST and open source) if not for my Patreon: this is how I fund such generosity. It lets me not have to play by the same rules as commercial software makers. It even lets me provide stuff like this TO commercial software makers so long as they can work with the very permissive MIT license (requiring credit to me for the bits I did, and inclusion of the MIT license terms themselves). It’s generally possible to reverse-engineer whether someone’s using PurestDrive, or Console, etc. so I suggest just running with it and publicizing the use of open Airwindows algorithms. Plenty of folks are already coding using the MIT license, the water is lovely and warm, hop on in :)

GrooveWear

TL;DW: Scrubbing highs off mechanically like a stylus would.

GrooveWear

Here’s something interesting! I revisited some pieces of ToVinyl4, one of ’em being GrooveWear. In fiddling with it, I discovered that I could put in a dedicated wet/dry for just that one part, and if I did, I got perfect high-frequency rolloff at 50%. In other words, as an effect it was working as intended (bit of overshoot available, like the needle was loose in the groove), but I could also redesign it as a tone-softener.

It’s all based on variations of averaging. I’ve got Average to soften just only sample values (it has some interesting quirks but I swear by that algorithm for naturally rolling off highs in a way that doesn’t sound digital). GrooveWear goes one step beyond that, and averages slews (not sample values). That means it’s averaging the rate of change. Then, later (and will be coming to VST) I did Aura, which is averaging the rate of change OF the rate of change… but that’s another story ;)

More importantly, I came up with a nice feature doing the revision. The GrooveWear contained in ToVinyl uses two stages of processing, since it can be a subtle effect. I worked out a convenient way to make the dry/wet control handle multiple stages so, as you increase it, you’re progressively adding stage after stage with the final stage going from dry to wet: it means you can start off with a very mathematically clean amount of effect, just one stage dry/wet, and then keep adding more. And in the spirit of that, I doubled the stages so now GrooveWear has four.

So, you can adjust the intensity control that specifies how much slew averaging the stages are doing (acts like a sort of frequency range control for the effect) or you can adjust the dry/wet to go from pristine to incredibly deep groove wear. It’s partly roll-off of the highs but it’s not JUST normal EQ, texturally it’s quite different because the effect doesn’t try to stop big transients like a square-wave’s sides, it tries to stop smaller-scale detail stuff while retaining the big harmonic content of waves. It’s averaging slew, not deleting it, so certain waveforms get through untouched… you’ll see.

Patreon is doing nicely which makes me happy: as you can see, when I start to get resources I do things like try to make Eurorack modules for people, and I’ve been super busy thinking up ways to do that which are (a) cool and (b) people can do for very little cost. That seems the best thing, and I’ve discovered some great tips and tricks and things. More on that later.

I’m also keeping an eye on the VCV Rack open-source virtual modular project: music made entirely in it seems not quite as good as hardware modular synth music. It’s almost like the modules and digital mixing in there could benefit from adding modules for making digital mixing sound more analog-like, stuff which can handle/elicit more in the way of warmth and vibe and depth and space and stuff.

I might just be able to help with that one ;)

Newer Posts
Older Posts

Airwindows

handsewn bespoke digital audio

Kinds Of Things

The Last Year

Patreon Promo Club

altruistmusic.com

Dave Robertson and the Kiss List

Decibelia Nix

Gamma1734

GuitarTraveller

ivosight.com – courtesy Johnny Wishoff

Podigy Podcast Editing Service

Super Synthesis Eurorack Modules

Very Rich Bandcamp

If you’re pledging the equivalent of three or more plugins per year, I’ll happily link you on the sidebar, including a link to your music or project! Message me to ask.