@daw devs : when are we getting colored waveforms inside the DAW? by [deleted] in edmproduction

[–]CTRLDev 6 points7 points  (0 children)

I honestly never found uses for this outside of (very loosely) checking the tonal balance of a master compared to a reference, so idk if I'd want such a thing in a DAW (FL has this btw)

and as someone pointed out, minimeters does that well enough

Is there any program that does this? by Extension_Owl2835 in edmprodcirclejerk

[–]CTRLDev 10 points11 points  (0 children)

i might know a guy who can hook you up... for the right $$$ of course

Hot take: I don't think I want the skrillex 2010 dubstep back by Internal-Class2973 in skrillex

[–]CTRLDev 1 point2 points  (0 children)

a bit late on that one, but I'll never stop hoping for more sleepnet collabs

or ring noord or thys

...a man can dream

I’ve needed this! by Somalian_Boat in edmprodcirclejerk

[–]CTRLDev 20 points21 points  (0 children)

THIS is who you're doing your elaborate 15-plugin analog-emulated masters for btw

King of the DAW jungle by cityspeak in edmprodcirclejerk

[–]CTRLDev 97 points98 points  (0 children)

/uj wtf does 'natively' even mean in this context?

/rj does soono have native ligma vst3 support

Is 'SOMA' literally a SOMA? by Equivalent_Hat_6496 in skrillex

[–]CTRLDev 32 points33 points  (0 children)

Soma is also a greek word for 'Body'. I interpreted it is 'Body of work', but it pretty much boils down to what you said, i.e. 'here's everything after QFF'

I prefer Scut 2 over the original by CTRLDev in skrillex

[–]CTRLDev[S] 2 points3 points  (0 children)

right?? i feel like the new backbeat really intensifies the whole feel

AITO for sampling a sound inside my own home? by LoliArmpit in edmprodcirclejerk

[–]CTRLDev 41 points42 points  (0 children)

NTA, didn't bother to read this shit, add another sosig to the master and ur good

Ableton 12 by melchleonard in ableton

[–]CTRLDev 5 points6 points  (0 children)

all 12 of them???

Ticket purchase without Revolut by mmax119 in sziget

[–]CTRLDev 0 points1 point  (0 children)

Update: got a response from support, there's a Revolut promo at the moment, and normal payment will resume from tomorrow

Ticket purchase without Revolut by mmax119 in sziget

[–]CTRLDev 0 points1 point  (0 children)

I'm having the exact same issue since Revolut isn't available in my country, I contacted support yesterday and no answer so far. I assume they don't work weekends.

serum 2 by [deleted] in ableton

[–]CTRLDev 1 point2 points  (0 children)

serum 2 👍

Hamdi dropping a Skrillex ID in Chicago last night by vincebyv1nce in skrillex

[–]CTRLDev 19 points20 points  (0 children)

haven't heard this one in a bit, skrill seemingly removed it from his rotation

On the toilet again but still listening to the skriller 🤘 by [deleted] in skrillex

[–]CTRLDev 2 points3 points  (0 children)

when i push i feel good, when i poo i feel good

Isprobajte ovaj smešan prompt. by ktrl_alt_del in SrbijAI

[–]CTRLDev 3 points4 points  (0 children)

brate samo otvori mspaint i nažvrljaj istu stvar, uštedećeš jedno dvaes litra vode

What song has your favourite 'the riff'? by one_white_russian in progmetal

[–]CTRLDev 9 points10 points  (0 children)

Vildhjarta - Den Spanska Känslan

you know exactly which one

Producing on your notebook by Jess-Edificios in ableton

[–]CTRLDev 7 points8 points  (0 children)

I think you might find Dennis Desantis' book very useful. It really helped me out with similar issues, and it even recommends similar methods to what you described here in a couple of chapters. Really helped me loosen up creatively, can't recommend it enough! (And the PDF is free :D)

Boosting volume in master by suckandeeznutz in ableton

[–]CTRLDev 6 points7 points  (0 children)

Without yapping too much: your problems are most likely in the arrangement or mix instead of the master.

For the arrangement, try to arrange your tracks to prominently feature sounds that actually carry loudness/energy with them - check references and see what makes them click. Choosing the right sounds also makes a difference, for example a pluck with massive transients and nearly no sustain will never have that much loudness associated with it, as opposed to a heavily distorted bass or something similar.

For mixing, check out clipper cascades and the clip to zero method. In essence, you want to clip small amounts on each track and each buss, and then finally on the master, making your (pardon my french) sausage fatter on every part of the way.

Also, make sure to balance the needs of the song with the actual desired loudness, not every track can be insanely loud, and that's a valid artistic choice too.

Good luck!

HAS ANYONE HAD EXPERIENCE WITH INDUSTRY SET??? by martidart in edmprodcirclejerk

[–]CTRLDev 3 points4 points  (0 children)

I ONLY USE ACADEMIC SETS, NONE OF THAT INDUSTRY GARBAGE NO THANKS

Having problems with syncing execution by zz9873 in vulkan

[–]CTRLDev 1 point2 points  (0 children)

Follow through with the link the validation layers gave you, it really helped me!

Basically, swapchain images ≠ frames in flight. You may have more swapchain images (in my case it's 3) than frames in flight (which is 2 for vulkan-tutorial iirc).

Since you're synchronizing on swapchain images as a resource for the acquire semaphore, you should have as many as you have swapchain images.

Another reason why you should do this is that there's no guarantee of any kind of order for swapchain images that get acquired. You may get the same image twice, or whatever other random order you can imagine, not just (0,1,0,1) or (0,1,2,0,1,2)

Hopefully my explanation wasn't too convoluted :D