diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-19 22:59:11 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-19 22:59:11 +0300 |
| commit | 2e3cbf9ea1ef8a0563bec289a5f5d391b549a6af (patch) | |
| tree | e1b8c6584dc8e88a8c1fe67cf55f3f5a4d0c0dbe | |
| parent | 022c58bb8e3a734dfb824472ebc504e7362219b9 (diff) | |
fix: set default audio speed to 1.0 for alloy voice
Changed the default speed from 0.98 to 1.0 for initial audio generation
to match the standard playback speed.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
| -rw-r--r-- | internal/gui/generator.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gui/generator.go b/internal/gui/generator.go index 3f2f252..316cab8 100644 --- a/internal/gui/generator.go +++ b/internal/gui/generator.go @@ -112,7 +112,7 @@ func (a *Application) generateAudio(ctx context.Context, word string) (string, e } else { // Use defaults for first generation voice = "alloy" - speed = 0.98 + speed = 1.0 } // Update audio config with selected voice and speed |
