Skip to content

Commit cf03fc4

Browse files
committed
fix: stronger formant effect - lower tonalityLimit max to 0.03 (~1.4kHz cutoff at max)
1 parent e1e9c84 commit cf03fc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

patches/RubberBandWrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class RubberBandWrapper {
6767
// At 48kHz: tonalityLimit 0.08 → freqTonalityLimit ~3.8kHz cutoff
6868
// Below cutoff: pitch shifts. Above cutoff: passes through (preserves formants)
6969
// 0 = no preservation (uniform shift), 1 = strong preservation
70-
m_formant = norm * 0.08f;
70+
m_formant = norm * 0.03f;
7171
m_stretch.setTransposeFactor(m_pitchScale, m_formant);
7272
}
7373

0 commit comments

Comments
 (0)