From: Mathieu Baudier Date: Tue, 24 Jun 2025 10:06:25 +0000 (+0200) Subject: Cosmetic improvements X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=d8226676bffbf054430c3cf26b32fc1e4694d1a9;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp Cosmetic improvements --- diff --git a/debian/not-installed b/debian/not-installed index 10f64cc9..7979e569 100644 --- a/debian/not-installed +++ b/debian/not-installed @@ -1,7 +1,4 @@ /usr/bin/whisper-command /usr/libexec/*/ggml/whisper-command -/usr/bin/whisper-talk-llama -/usr/libexec/*/ggml/whisper-talk-llama - /usr/bin/vad-speech-segments diff --git a/debian/whisper-speak b/debian/whisper-speak index 41025603..c021a2ce 100644 --- a/debian/whisper-speak +++ b/debian/whisper-speak @@ -1,2 +1,11 @@ #!/bin/sh + +# whisper-talk-llama can use a TTS system for the assistant answers. +# It expects a whisper-speak in its path which will understand the following argument: +# $1 : Voice ID +# $2 : Path to the generated answer as text +# +# In this implementation, we wrap espeak for (British) English. +# It is therefore recommended to use the --translate argument of whisper-talk-llama + espeak-ng -v en-gb+m$1 -s 225 -p 50 -a 200 -g 5 -k 5 -f $2