confirmed: <1 results in Higher pitch. Adjusted NEUTRAL to slightly lower pitch

This commit is contained in:
davotoula
2026-01-15 10:47:03 +01:00
parent 5ce4391db4
commit c6d437b98e
2 changed files with 2 additions and 1 deletions
@@ -61,6 +61,7 @@ class VoiceAnonymizationController(
preset: VoicePreset,
originalFile: File?,
) {
Log.d(logTag, "selectPreset called with: ${preset.name}, pitchFactor: ${preset.pitchFactor}")
if (processingPreset != null || preset == selectedPreset) return
if (preset == VoicePreset.NONE) {
@@ -29,5 +29,5 @@ enum class VoicePreset(
NONE(1.0, R.string.voice_preset_none),
DEEP(1.4, R.string.voice_preset_deep),
HIGH(0.75, R.string.voice_preset_high),
NEUTRAL(0.9, R.string.voice_preset_neutral),
NEUTRAL(1.1, R.string.voice_preset_neutral),
}