Skip to content

Commit e3ec48a

Browse files
vanceingallsclaude
andauthored
feat(studio): fold a preset shut, and give each one its own title design (#3191)
* fix(studio): close the typecheck and fallow gaps wa-18b-reschedule opened useAutomationLanes.ts's write() assumed gesture-scoped coalescing and a preview-only commit that useDomEditAttributeCommits.ts never grew — backported that option support from its own later commit so the two sides of the API agree. The paste path and its tests were missing the box selection's v0/v1 bounds a sibling commit added to AutomationSelection. The FX panel's carve controls still edited the six mechanism numbers (maxCutDb, bands, intelligibilityBias) after carveProfile() collapsed authoring to one Strength knob, so those fields no longer existed on HfCarveSettings; UI now edits strength, and analyseCarveBands is called with carveProfile(strength). Also closes fallow's complexity, dead-code and duplication findings on this PR's diff: extracted automationLaneDragMath.ts (pure group/point-move math) and useAutomationRangeDrag.ts (the marquee-select gesture) out of useAutomationLaneGestures.ts, pulled a couple of render-loop ternaries and a resolver into named functions, dropped an export nothing outside its file used, and shared a step-simplifier between audioCarve's two envelope builders. The edge-stretch vs. box-select priority test in TimelineAutomationLane.test was still pinning the pre-box-select rule (edge wins over a point sitting on it) that a sibling commit deliberately reversed — a point inside the box is now selected content, so grabbing it drags the group instead. Updated the test to the shipped rule instead of the old one. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(core): cap the via conic's weight so an edge-clamped via point can't NaN A via point pulled out past the segment (viaX: 5, viaY: -3) clamps to (0.999, 0.001) — exactly on the steady region's edge, where edge - viaX is 0. viaConic divided by that zero to get an infinite weight, and shapeVia turned Infinity into NaN a few steps later (Infinity - Infinity in the quadratic coefficient). NaN reaching setValueCurveAtTime silences the automated parameter for the rest of the render. Capped the weight at 1e6 instead of leaving it unbounded — past that point the arc already reads as touching the via point, so nothing visible is lost. Also hardened shapeVia's existing denominator guard (`<= 0`) to `!(> 0)`, since NaN fails the original comparison and fell through it. Review by Miga (PR #3208). * fix(studio-server): fingerprint the proactive waveform cache key too The route already keys the waveform cache on the asset's size and mtime as well as its path, so a rebuilt-in-place file gets fresh peaks instead of stale ones. generateWaveformCache — the proactive path that runs on upload — still called buildWaveformCacheKey with the path alone, so it wrote to a different key than the route reads from (making the pre-generated cache never found) and kept the exact collision bug this fingerprint exists to fix on its own path. Review by Miga (PR #3211). * style(docs): run oxfmt on the /hyperframes-audio skill docs Table column widths had drifted out of alignment with oxfmt's own rules, failing format:check and blocking the Preflight gate every downstream branch inherits. Whitespace only, no content change. * fix(core): stop \b from missing underscore-separated names, guard clipsOverlap's negative duration \b treats `_` as a word character, so \bbed\b never matched bed_01, music_bed_loop, or theme_song, and \bvo\b/\bvox\b/\btts\b had the same gap — an underscore-separated bed classified as "unknown" and could end up offered as its own carve source. Replaced the short hints with a boundary that actually excludes letters and digits on both sides. clipsOverlap computed end = start + duration without guarding sign, so a negative duration put end before start — an interval that does not describe anything, and one specific case showed it silently dropping a real overlap (a shorter, earlier broken end rejected a clip that genuinely contained the point). Duration clamps to zero instead: a clip cannot un-play time, and a zero-length clip at its start is the sane reading of "duration nobody wrote down as positive." Review by Miga (PR #3212). * fix(studio): widen PropertyPanel's resetModules render timeout again The 20s margin (already once widened for the same reason) is timing out in CI's full-monorepo Test run — the resetModules()+fresh-import render this test needs is uncached and competes with every other package's test suite for the same worker pool, and the same test passes in well under 2s standalone. Went to 45s rather than re-tuning to whatever number happens to clear the current CI load, since that number moves every time CI gains a package. * fix(studio): stop the single-candidate auto-apply carve firing twice Two auto-apply effects both fire when sourceOptions.length === 1: the multi-candidate effect only guards length === 0, so a single candidate passes it too, and the single-candidate effect passes its own guard right after — both compute the same sources list and both call setCarve, so the common case (one narrator, one bed) triggered two decodes, two FFT runs, and two concurrent attribute writes for one decision. The multi-candidate effect now defers to its sibling for exactly one candidate, which already has its own detailed handling for that case. Review by Miga (PR #3213). * feat(core): carve against every voice over a bed, always (#3212) * feat(core): carve against every voice over a bed, always dynamically A bed usually runs under a whole sequence — a narrator, an interview answer, a second presenter — and carving against one of them left the others fighting it. `source` becomes `sources`, and `mixCarveSources` sums every voice onto the BED's clock before anything is measured. That is what keeps one analysis sufficient: the chain is fixed, so there is no per-voice filter to switch between, and bands drawn from all the speech there is with envelopes that rise wherever any of it happens answer the actual question — where and when is speech masking this bed. Summed rather than averaged: two people talking at once mask more than either alone. Audio before the bed starts is dropped rather than folded in at zero, since it plays over nothing and shifting it would put a cut where there is no voice. `dynamic` is gone. A fixed depth thins the bed through every pause, and once both have been heard there is no reason to want it, so every carve follows the speech. Two helpers the panel and the headless script now share instead of each carrying a copy — two definitions of "what does this name suggest" drift, and then the two disagree about which track is the voice: - `classifyAudioName` reads a track's kind from its id and filename together. `unknown` is deliberately common: treating an unrecognised name as "not a voice" would hide the one track somebody needs to pick. - `clipsOverlap` keeps out a voice that never plays while the bed does. An unwritten duration counts as unbounded, not zero — refusing a clip whose length the composition leaves to the media would drop the commonest case there is. Files written before this still load: a single `source` reads as a one-voice list, a stored `dynamic` is ignored, and an absent attribute means the defaults whole. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(core): stop \b from missing underscore-separated names, guard clipsOverlap's negative duration \b treats `_` as a word character, so \bbed\b never matched bed_01, music_bed_loop, or theme_song, and \bvo\b/\bvox\b/\btts\b had the same gap — an underscore-separated bed classified as "unknown" and could end up offered as its own carve source. Replaced the short hints with a boundary that actually excludes letters and digits on both sides. clipsOverlap computed end = start + duration without guarding sign, so a negative duration put end before start — an interval that does not describe anything, and one specific case showed it silently dropping a real overlap (a shorter, earlier broken end rejected a clip that genuinely contained the point). Duration clamps to zero instead: a clip cannot un-play time, and a zero-length clip at its start is the sane reading of "duration nobody wrote down as positive." Review by Miga (PR #3212). --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(studio): port the carve UI off the removed source/dynamic fields #3212 (accidentally squash-merged into this branch instead of main) changed HfCarveSettings from a single `source` + `dynamic` toggle to a `sources` list with dynamic mode removed outright — the multi-voice UI consumer that goes with that shape lands in the very next PR, so this branch was left with a type that no longer matched its own code. Minimal port, not the multi-voice redesign that PR does properly: the "Listen to" picker and analyse() treat sources[0] as the one voice this UI still understands, and every dynamic-mode branch (the automated envelope lanes, the toggle, the checkbox) is gone along with the field — a carve is now always the static value the analysis computes, matching what the type change made permanent. Test suite trimmed the same way: the automation-lane and toggle tests covered behavior that no longer exists. * chore: fix markdown formatting --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 6bcf739 commit e3ec48a

27 files changed

Lines changed: 1430 additions & 119 deletions

packages/core/src/audio/audioFxGraph.test.ts

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,3 +698,66 @@ describe("a preset's run is wrapped in a wet/dry blend", () => {
698698
expect(live).toEqual([]);
699699
});
700700
});
701+
702+
describe("a preset's wrap stays with the nodes it belongs to", () => {
703+
const peak = (over: Partial<HfAudioFxNode>): HfAudioFxNode =>
704+
({
705+
type: "peaking",
706+
enabled: true,
707+
params: defaultAudioFxParams("peaking"),
708+
...over,
709+
}) as HfAudioFxNode;
710+
711+
it("rebuilds when a reorder moves a node across a preset boundary", () => {
712+
// The type sequence is identical either way, so without preset identity in
713+
// the shape the chain updated in place and left the wet/dry wrap bracketing
714+
// the hand-added effect instead of the preset's — preview blending out the
715+
// author's own node while the render, which rebuilds, blended out the
716+
// preset's.
717+
const before: HfAudioFxChain = {
718+
version: 1,
719+
nodes: [peak({ id: "p1", fromPreset: "boom-tame" }), peak({ id: "own" })],
720+
};
721+
const after: HfAudioFxChain = {
722+
version: 1,
723+
nodes: [peak({ id: "own" }), peak({ id: "p1", fromPreset: "boom-tame" })],
724+
};
725+
expect(buildFxChain(asCtx(ctx()), before).update(after)).toBe(false);
726+
});
727+
728+
it("gives every run of one preset its own blend", () => {
729+
// A preset pulled apart by a reorder occupies two runs. Keyed by id and
730+
// assigned, the second wrap overwrote the first, so a whole-preset lane
731+
// reached one fragment and the switch silently left the rest applied.
732+
const split: HfAudioFxChain = {
733+
version: 1,
734+
nodes: [
735+
peak({ id: "t1", fromPreset: "telephone" }),
736+
{ type: "reverb", id: "own", enabled: true, params: defaultAudioFxParams("reverb") },
737+
peak({ id: "t2", fromPreset: "telephone" }),
738+
],
739+
};
740+
const built = buildFxChain(asCtx(ctx()), split);
741+
// Two wraps, so two wet/dry pairs — four params under the one id.
742+
expect(built.presets.telephone).toHaveLength(4);
743+
});
744+
745+
it("pushes an amount into each run of a split preset, not one of them twice", () => {
746+
const at = (amount: number): HfAudioFxChain => ({
747+
version: 1,
748+
nodes: [
749+
peak({ id: "t1", fromPreset: "telephone", presetAmount: amount }),
750+
{ type: "reverb", id: "own", enabled: true, params: defaultAudioFxParams("reverb") },
751+
peak({ id: "t2", fromPreset: "telephone", presetAmount: amount }),
752+
],
753+
});
754+
const built = buildFxChain(asCtx(ctx()), at(1));
755+
expect(built.update(at(0))).toBe(true);
756+
// Every wet leg off and every dry leg fully open: switching the preset off
757+
// has to silence all of it, not the last fragment only.
758+
const wets = (built.presets.telephone ?? []).filter((_, i) => i % 2 === 0);
759+
const drys = (built.presets.telephone ?? []).filter((_, i) => i % 2 === 1);
760+
for (const t of wets) expect(t.param.value).toBe(0);
761+
for (const t of drys) expect(t.param.value).toBe(1);
762+
});
763+
});

packages/core/src/audio/audioFxGraph.ts

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,16 @@ function shapeOf(chain: HfAudioFxChain): string {
599599
// same reason: pushed into the running graph it would be a no-op, and
600600
// preview would keep sweeping on a triangle while the render used a sine.
601601
const wave = node.type === "phaser" ? `~${p.type}` : "";
602-
return `${node.type}${poles}${fixedFreq}${wave}`;
602+
// Which preset run this node belongs to, for the same reason again: the
603+
// wet/dry wrap is WIRED around a run at construction, so moving a node
604+
// across a preset boundary changes the graph's shape even when the type
605+
// sequence is identical. Without this, reordering a hand-added peaking
606+
// filter past a preset's peaking filter kept the in-place update path and
607+
// left the wrap bracketing the wrong effect — preview blending out the
608+
// author's own node while the render, which rebuilds, blended out the
609+
// preset's.
610+
const run = node.fromPreset ? `%${node.fromPreset}` : "";
611+
return `${node.type}${poles}${fixedFreq}${wave}${run}`;
603612
})
604613
.join("|");
605614
}
@@ -674,8 +683,14 @@ export function buildFxChain(
674683

675684
const shape = shapeOf(chain);
676685

686+
// Accumulated, not assigned. A preset pulled apart by a reorder occupies more
687+
// than one run, and each run gets its own wrap — keying by id and assigning
688+
// dropped every wrap but the last, so a whole-preset lane drove one fragment
689+
// and left the rest at full strength while the switch read "Off".
677690
const presetTargets: Record<string, FxParamTarget[]> = {};
678-
for (const p of presets) presetTargets[p.id] = mixTargets(p.wet.gain, p.dry.gain);
691+
for (const p of presets) {
692+
(presetTargets[p.id] ??= []).push(...mixTargets(p.wet.gain, p.dry.gain));
693+
}
679694
return {
680695
input,
681696
output,
@@ -699,10 +714,14 @@ export function buildFxChain(
699714
// The blend is a value like any other: switching a preset off writes
700715
// `presetAmount`, and pushing it into the running graph is what keeps that
701716
// from being a rebuild — and from restarting the audio underneath it.
717+
// Walked in step with the build, not looked up by id: `find` returned the
718+
// first wrap for every run sharing a preset id, so a split preset wrote
719+
// one wrap twice and never touched the other.
720+
let wrapIndex = 0;
702721
for (const run of presetRuns(enabledAudioFxNodes(next))) {
703722
if (!run.preset) continue;
704-
const wrap = presets.find((p) => p.id === run.preset);
705-
if (!wrap) continue;
723+
const wrap = presets[wrapIndex++];
724+
if (!wrap || wrap.id !== run.preset) continue;
706725
wrap.wet.gain.value = run.amount;
707726
wrap.dry.gain.value = 1 - run.amount;
708727
}

packages/core/src/audioFxCopy.test.ts

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,74 @@ describe("audioBandAt", () => {
103103
expect(audioBandAt(Number.NaN)).toBeUndefined();
104104
});
105105
});
106+
107+
/**
108+
* Copy that assumes the track is a voice.
109+
*
110+
* The rack sits on whatever the author selected — a music bed, a sound effect,
111+
* a room tone. Every effect, every named job and every profile is offered on
112+
* all of them, so a control that reads "Thins the voice out" on a synth pad is
113+
* describing something the author cannot hear and does not have. It is the same
114+
* rule this file's header already states — describe a control by what changes in
115+
* THE SOUND — applied to the words rather than to the mechanism.
116+
*
117+
* The voice presets are the deliberate exception: they are voice by definition,
118+
* and the shelf hides them on a track that classifies as music or as an effect,
119+
* so "My voice sounds amateur" is only ever read next to a voice.
120+
*
121+
* This is a lint on the words, not a judgement about mixing. It exists because
122+
* the offending strings were written one at a time over months and read fine in
123+
* isolation — nobody notices the assumption until they apply Cut Rumble to a
124+
* bass line and the panel tells them it will thin their voice out.
125+
*/
126+
describe("no copy assumes the track is a voice", () => {
127+
/** Words that only mean something if the material is speech. */
128+
const SPEECH =
129+
/\b(voice|vocal|voices|speech|spoken|word|words|sentence|sentences|syllable|syllables|narration|narrator|talking|chest)\b/i;
130+
131+
/** Presets whose whole purpose is a voice, so their copy may say so. */
132+
const VOICE_PRESETS = new Set(
133+
HF_AUDIO_FX_PRESETS.filter((p) => p.family === "voice").map((p) => p.id),
134+
);
135+
136+
const offenders = (entries: [string, string][]): string[] =>
137+
entries.filter(([, text]) => SPEECH.test(text)).map(([where, text]) => `${where}: "${text}"`);
138+
139+
it("not in an effect's name, blurb, reach-for line or any knob", () => {
140+
const entries: [string, string][] = [];
141+
for (const [id, copy] of Object.entries(EFFECT_COPY)) {
142+
entries.push([`${id}.title`, copy.title], [`${id}.does`, copy.does]);
143+
entries.push([`${id}.reachFor`, copy.reachFor]);
144+
entries.push([`${id}.primaryEnds.low`, copy.primaryEnds.low]);
145+
entries.push([`${id}.primaryEnds.high`, copy.primaryEnds.high]);
146+
for (const [key, param] of Object.entries(copy.params)) {
147+
entries.push([`${id}.${key}.label`, param.label]);
148+
if (param.hint) entries.push([`${id}.${key}.hint`, param.hint]);
149+
if (param.ends) {
150+
entries.push([`${id}.${key}.ends.low`, param.ends.low]);
151+
entries.push([`${id}.${key}.ends.high`, param.ends.high]);
152+
}
153+
}
154+
}
155+
expect(offenders(entries)).toEqual([]);
156+
});
157+
158+
it("not in the band vocabulary, which every spectral module shares", () => {
159+
// These names get taught once and then reused everywhere, so a voice-only
160+
// word here spreads to every filter in the rack.
161+
expect(offenders(BANDS.map((b) => [b.name, b.says]))).toEqual([]);
162+
});
163+
164+
it("not in the complaint a non-voice preset answers", () => {
165+
const entries = Object.entries(PRESET_PROBLEM).filter(([id]) => !VOICE_PRESETS.has(id));
166+
expect(offenders(entries as [string, string][])).toEqual([]);
167+
});
168+
169+
it("still lets the voice presets say what they are for", () => {
170+
// The exception has to be real, or the rule above is untested — a catalogue
171+
// where nothing said "voice" would pass every assertion here vacuously.
172+
const voiced = Object.entries(PRESET_PROBLEM).filter(([id]) => VOICE_PRESETS.has(id));
173+
expect(voiced.length).toBeGreaterThan(0);
174+
expect(voiced.some(([, text]) => SPEECH.test(text))).toBe(true);
175+
});
176+
});

packages/core/src/audioFxCopy.ts

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ export const EFFECT_COPY: Record<string, EffectCopy> = {
6666
does: "Cuts the very bottom — traffic, footsteps, air conditioning, hands on the mic.",
6767
reachFor: "There's a low hum or thump under everything.",
6868
primary: "frequency",
69-
primaryEnds: { low: "Only the deepest", high: "Thins the voice out" },
69+
primaryEnds: { low: "Only the deepest", high: "Thins it out" },
7070
band: [20, 300],
7171
params: {
7272
frequency: {
7373
label: "Cut below",
7474
hint: "Everything under this is removed.",
75-
ends: { low: "Only the deepest", high: "Thins the voice out" },
75+
ends: { low: "Only the deepest", high: "Thins it out" },
7676
},
7777
q: { label: "Sharpness", hint: "How abruptly the cut starts." },
7878
poles: { label: "Steepness", hint: "How fast it falls away below the point." },
@@ -134,7 +134,7 @@ export const EFFECT_COPY: Record<string, EffectCopy> = {
134134
compressor: {
135135
title: "Even Out Loudness",
136136
does: "Brings the quiet parts up and holds the loud parts down, so nothing jumps out at the listener.",
137-
reachFor: "Some words are much louder than others.",
137+
reachFor: "Some parts are much louder than others.",
138138
primary: "strength",
139139
primaryEnds: { low: "Barely touched", high: "Very even, quite squashed" },
140140
params: {
@@ -168,10 +168,10 @@ export const EFFECT_COPY: Record<string, EffectCopy> = {
168168
},
169169
gate: {
170170
title: "Silence the Gaps",
171-
does: "Mutes the pauses between words. Room tone under speech stays — this closes the silences, it does not remove noise.",
172-
reachFor: "You can hear the room breathing between sentences.",
171+
does: "Mutes the pauses. Whatever sits underneath stays — this closes the gaps, it does not remove noise.",
172+
reachFor: "You can hear the room in the gaps.",
173173
primary: "strength",
174-
primaryEnds: { low: "Only true silence", high: "Cuts quiet words too" },
174+
primaryEnds: { low: "Only true silence", high: "Cuts quiet parts too" },
175175
params: {
176176
threshold: { label: "Quieter than this is a gap" },
177177
range: {
@@ -182,7 +182,7 @@ export const EFFECT_COPY: Record<string, EffectCopy> = {
182182
attack: { label: "How fast it opens" },
183183
release: {
184184
label: "How fast it closes",
185-
ends: { low: "Clips word endings", high: "Leaves tails intact" },
185+
ends: { low: "Clips tails short", high: "Leaves tails intact" },
186186
},
187187
knee: { label: "How gradual" },
188188
},
@@ -286,11 +286,11 @@ export const EFFECT_COPY: Record<string, EffectCopy> = {
286286
*/
287287
export const BANDS: { from: number; to: number; name: string; says: string }[] = [
288288
{ from: 20, to: 80, name: "Rumble", says: "traffic, footsteps, handling" },
289-
{ from: 80, to: 250, name: "Weight", says: "chest, body, warmth" },
289+
{ from: 80, to: 250, name: "Weight", says: "body, warmth, low end" },
290290
{ from: 250, to: 600, name: "Mud", says: "boxy, muffled, cardboard" },
291-
{ from: 600, to: 2000, name: "Middle", says: "the body of a voice" },
292-
{ from: 2000, to: 5000, name: "Presence", says: "consonants, intelligibility" },
293-
{ from: 5000, to: 10000, name: "Edge", says: "sibilance, harshness" },
291+
{ from: 600, to: 2000, name: "Middle", says: "the body of the sound" },
292+
{ from: 2000, to: 5000, name: "Presence", says: "definition, consonants" },
293+
{ from: 5000, to: 10000, name: "Edge", says: "harshness, sibilance" },
294294
{ from: 10000, to: 20000, name: "Air", says: "sparkle, openness" },
295295
];
296296

@@ -318,15 +318,16 @@ export const PRESET_PROBLEM: Record<string, string> = {
318318
"voice-broadcast": "I want it to sound like radio",
319319
"voice-warm": "I want it intimate and close",
320320
"rumble-cut": "There's a hum or thump underneath",
321-
"room-gate": "I can hear the room between sentences",
322-
"boom-tame": "My voice sounds boomy",
321+
"room-gate": "I can hear the room in the gaps",
322+
"boom-tame": "It sounds boomy",
323323
"harsh-tame": "It's harsh and tiring to listen to",
324324
telephone: "Make it sound like a phone call",
325325
"radio-am": "Make it sound like an old radio",
326326
megaphone: "Make it sound shouted through a horn",
327327
"lofi-tape": "Make it sound like an old tape",
328328
"pa-system": "Make it sound like a station announcement",
329329
intercom: "Make it sound like a door intercom",
330+
"doofus-worble": "Make it wobble like it is seasick",
330331
"room-tight": "It sounds dry and stuck to the speaker",
331332
"room-natural": "It should sound like a real place",
332333
hall: "It should sound far away and big",

packages/core/src/audioFxJobs.test.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,20 @@ describe("named jobs", () => {
6161
for (const id of ids) expect(getAudioFxJob(id)?.id).toBe(id);
6262
});
6363
});
64+
65+
/**
66+
* A job's `does` is the complaint that leads to it, shown in the add menu on
67+
* whatever track is selected — so it is under the same rule as the effect copy
68+
* in `audioFxCopy.test.ts`: it may not assume the material is speech. Reduce Mud
69+
* is as right on a boxy guitar as on a boxy voice, and the menu should say so.
70+
*/
71+
describe("no job assumes the track is a voice", () => {
72+
const SPEECH =
73+
/\b(voice|vocal|speech|spoken|word|words|sentence|syllable|narration|talking|chest)\b/i;
74+
it("names the symptom without naming the source", () => {
75+
const bad = HF_AUDIO_FX_JOBS.filter((j) => SPEECH.test(`${j.label} ${j.does}`)).map(
76+
(j) => `${j.id}: "${j.does}"`,
77+
);
78+
expect(bad).toEqual([]);
79+
});
80+
});

packages/core/src/audioFxJobs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const HF_AUDIO_FX_JOBS: readonly HfAudioFxJob[] = [
5151
{
5252
id: "tame-boominess",
5353
label: "Tame Boominess",
54-
does: "Too much chest — it booms.",
54+
does: "Too much low-end body — it booms.",
5555
type: "peaking",
5656
params: { frequency: 200, gain: -4, q: 1.4 },
5757
},
@@ -72,7 +72,7 @@ export const HF_AUDIO_FX_JOBS: readonly HfAudioFxJob[] = [
7272
{
7373
id: "add-clarity",
7474
label: "Add Clarity",
75-
does: "Words are hard to make out.",
75+
does: "It is hard to make out — it sits back.",
7676
type: "peaking",
7777
params: { frequency: 3000, gain: 2.5, q: 1 },
7878
},

0 commit comments

Comments
 (0)