From 2e3cbf9ea1ef8a0563bec289a5f5d391b549a6af Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 19 Jul 2025 22:59:11 +0300 Subject: fix: set default audio speed to 1.0 for alloy voice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- internal/gui/generator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3