]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
Cosmetic improvements
authorMathieu Baudier <redacted>
Tue, 24 Jun 2025 10:06:25 +0000 (12:06 +0200)
committerMathieu Baudier <redacted>
Tue, 24 Jun 2025 10:06:25 +0000 (12:06 +0200)
debian/not-installed
debian/whisper-speak

index 10f64cc92ebb1738c9031557543f7452c88f191b..7979e569a7f8ac1d43222f932da50b0c2f8ab31b 100644 (file)
@@ -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
index 41025603f1dfbcfabdb50a9d0867080d6eb330c3..c021a2ce7245f334131e01e50fc380ce024d371a 100644 (file)
@@ -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