| 1 |
|
| 2 |
|
| 3 |
pub(super) const THREADS: &[(&str, &str, &[&str])] = &[ |
| 4 |
( |
| 5 |
"EQ before or after compression?", |
| 6 |
"Classic debate. What is your default chain order and why?", |
| 7 |
&[ |
| 8 |
"Subtractive EQ first to clean up, then compress, then additive EQ to shape.", |
| 9 |
"Depends on the source. Muddy vocal? EQ first. Clean recording? Compress first.", |
| 10 |
"I do both. Light EQ before, heavier shaping after.", |
| 11 |
], |
| 12 |
), |
| 13 |
( |
| 14 |
"Parallel compression techniques", |
| 15 |
"How are you using parallel compression? Just on drums or on everything?", |
| 16 |
&[ |
| 17 |
"Drums and vocals mainly. Crush a copy, blend it in at like -12dB.", |
| 18 |
"I parallel compress the entire mix bus lightly. Adds glue without squashing dynamics.", |
| 19 |
"The NY compression trick on drums is still unbeatable. Heavy compression, blend to taste.", |
| 20 |
], |
| 21 |
), |
| 22 |
( |
| 23 |
"Multiband compression: when to use it?", |
| 24 |
"I never quite know when multiband is the right tool vs a regular compressor.", |
| 25 |
&[ |
| 26 |
"When different frequency ranges need different treatment. A boomy vocal with sibilance needs different ratios for lows and highs.", |
| 27 |
"On the master bus for gentle tonal balancing. Very light ratios, like 1.5:1.", |
| 28 |
"Rarely. Most problems are better solved with EQ. Multiband comp is a precision tool, not a default.", |
| 29 |
], |
| 30 |
), |
| 31 |
( |
| 32 |
"Mixing with saturation", |
| 33 |
"How much saturation do you add and where in the chain?", |
| 34 |
&[ |
| 35 |
"A tiny bit on every channel. Tape emulation at the end of each strip. Adds harmonic richness.", |
| 36 |
"I saturate the mix bus and nothing else. Keeps it cohesive.", |
| 37 |
"Saturation on bass is essential for me. Makes it audible on small speakers.", |
| 38 |
"Early in the chain, before compression. Saturated signals compress differently.", |
| 39 |
], |
| 40 |
), |
| 41 |
( |
| 42 |
"Taming harsh vocals", |
| 43 |
"My vocal recordings always end up harsh around 3-5kHz. De-esser? EQ? Both?", |
| 44 |
&[ |
| 45 |
"Dynamic EQ on the 2-5kHz range. Only dips when it gets harsh, leaves the presence otherwise.", |
| 46 |
"De-esser is specifically for sibilance (6-10kHz). For 3-5kHz harshness, use a dynamic EQ or multiband.", |
| 47 |
"Check your microphone and preamp. Some mics just have a harsh presence peak. A different mic might solve it at the source.", |
| 48 |
], |
| 49 |
), |
| 50 |
( |
| 51 |
"Reverb mixing tips", |
| 52 |
"My reverbs either sound obvious or nonexistent. How do you make them sit right?", |
| 53 |
&[ |
| 54 |
"Pre-delay. 20-50ms of pre-delay separates the dry signal from the reverb and adds clarity.", |
| 55 |
"High-cut the reverb at 6-8kHz. Bright reverb tails make everything washy.", |
| 56 |
"Send to reverb, then EQ the return. Treat the reverb as its own instrument.", |
| 57 |
], |
| 58 |
), |
| 59 |
( |
| 60 |
"Mixing low end: kick and bass coexistence", |
| 61 |
"How do you make the kick and bass work together without one masking the other?", |
| 62 |
&[ |
| 63 |
"Pick one to own the sub frequencies. If the kick has the sub, high-pass the bass at 60Hz. Or vice versa.", |
| 64 |
"Side-chain the bass to the kick. Classic but effective.", |
| 65 |
"Complementary EQ. Boost the kick at 60Hz, cut the bass there. Boost the bass at 100Hz, cut the kick.", |
| 66 |
"In most genres, the kick owns 40-80Hz and the bass lives at 80-200Hz. Arrange them to not compete.", |
| 67 |
], |
| 68 |
), |
| 69 |
( |
| 70 |
"Mix bus processing", |
| 71 |
"What do you put on your mix bus? When do you add it?", |
| 72 |
&[ |
| 73 |
"Gentle glue compressor (SSL style, 2:1, slow attack) from the start. Mix into it.", |
| 74 |
"EQ, compression, slight saturation, limiter. But everything is doing very little. 1-2dB each.", |
| 75 |
"Nothing until the final mix. I want to hear what I actually have before processing it.", |
| 76 |
], |
| 77 |
), |
| 78 |
( |
| 79 |
"Reference level for mixing", |
| 80 |
"What volume level do you monitor at while mixing?", |
| 81 |
&[ |
| 82 |
"Calibrated to 85dB SPL for critical listening. Most of the time I mix around 75dB.", |
| 83 |
"Quiet. If I can have a conversation over the mix, the volume is right.", |
| 84 |
"I check at multiple levels. Low for balance, medium for detail, loud for short reality checks.", |
| 85 |
], |
| 86 |
), |
| 87 |
( |
| 88 |
"Width and stereo imaging", |
| 89 |
"How do you create width in a mix without it collapsing in mono?", |
| 90 |
&[ |
| 91 |
"Keep the center strong (kick, bass, lead vocal, snare). Spread supporting elements.", |
| 92 |
"Use different methods: hard panning, stereo delay, chorus, mid-side EQ. Variety avoids phase issues.", |
| 93 |
"Always check mono. If it sounds thin in mono, your width is relying on phase tricks that cancel.", |
| 94 |
], |
| 95 |
), |
| 96 |
( |
| 97 |
"Handling dynamic range in modern productions", |
| 98 |
"Everything is so compressed now. How do you keep dynamics while still being competitive in loudness?", |
| 99 |
&[ |
| 100 |
"Mix dynamically. Let the mastering engineer handle loudness. That is literally their job.", |
| 101 |
"Automate volume instead of compressing. Ride the fader for consistent level without squashing transients.", |
| 102 |
"Use upward compression. Raises the quiet parts without touching the peaks.", |
| 103 |
], |
| 104 |
), |
| 105 |
( |
| 106 |
"Delay vs reverb for depth", |
| 107 |
"When do you reach for a delay instead of a reverb to create depth?", |
| 108 |
&[ |
| 109 |
"Delay for rhythmic depth (synced to tempo). Reverb for spatial depth (rooms, halls).", |
| 110 |
"Short delays (30-80ms) create depth without the wash of reverb. Great for keeping things tight.", |
| 111 |
"I use both together. Short delay into a reverb return. Best of both worlds.", |
| 112 |
], |
| 113 |
), |
| 114 |
( |
| 115 |
"Panning strategies", |
| 116 |
"Do you follow specific panning rules or go by feel?", |
| 117 |
&[ |
| 118 |
"LCR panning. Hard left, center, hard right. Simple but effective. Forces commitment.", |
| 119 |
"I pan where the instruments would be on a stage. Drums from the drummer's perspective.", |
| 120 |
"By feel. Whatever serves the song. Rules are starting points, not laws.", |
| 121 |
], |
| 122 |
), |
| 123 |
( |
| 124 |
"Mixing with headphones: tips and tricks", |
| 125 |
"For those who primarily mix on headphones, what are your strategies?", |
| 126 |
&[ |
| 127 |
"Crossfeed plugin. Simulates speaker crosstalk so panning sounds more natural.", |
| 128 |
"Reference constantly on speakers when you can. Even laptop speakers reveal balance issues.", |
| 129 |
"Open-back headphones for mixing, closed-back for tracking. The soundstage difference matters.", |
| 130 |
], |
| 131 |
), |
| 132 |
( |
| 133 |
"The loudness war is over, right?", |
| 134 |
"With streaming normalization, does anyone still master to -6 LUFS?", |
| 135 |
&[ |
| 136 |
"EDM and hip hop still push hard. Genre expectations matter more than streaming targets.", |
| 137 |
"The war is over for most genres. I master to -10 to -14 depending on the track.", |
| 138 |
"Yes. And it sounds better. More dynamics, more punch, more musicality. No reason to smash it.", |
| 139 |
], |
| 140 |
), |
| 141 |
]; |
| 142 |
|