===== - Coqui STT&TTS Dokuwiki Page =====
=) [[#Top]] \\
- [[#Speech-To-Text and Text-To-Speech engines]]
- [[#Text-To-Speech Sandbox]]
**[[https://coqui.ai/blog|Coqui STT/TTS is an open source embedded speech-to text/text-to-speech engine]]** \\
[[https://tts.readthedocs.io/en/latest/|Text-to-Speech generation]] - [[https://erogol.github.io/ddc-samples/|TTS v2 Samples]]\\
\\
[[https://stt.readthedocs.io/en/latest/|Coqui STT Quickstart]] \\
\\
===== - Speech-To-Text and Text-To-Speech engines =====
[[#Top]] \\
[[http://kaldi-asr.org/doc/|Kaldi is a toolkit for speech recognition]] - [[http://www.openslr.org/index.html|OpenSLR is a site devoted to hosting speech and language resources]] \\
\\
[[https://desh2608.github.io/2020-05-18-using-librispeech/|How to use the pre-trained Librispeech model in Kaldi]] \\
\\
[[https://rhasspy.readthedocs.io/en/latest/|Rhasspy Voice Assistant]]\\
\\
[[http://espeak.sourceforge.net/docindex.html|eSpeak - Documents]] - [[https://www.tecmint.com/zenity-creates-graphical-gtk-dialog-boxes-in-command-line-and-shell-scripts/|Zenity]] \\
\\
===== - Text-To-Speech Sandbox =====
[[#Top]] \\
- espeak "ALEXA! What time is it?" or espeak -f
- tts --text "ALEXA! What time is it?" --model_name "tts_models/en/ljspeech/tacotron2-DDC"
- aplay tts_output.wav
- [[https://bash.cyberciti.biz/guide/Main_Page|Linux Bash Shell Scripting Tutorial]]
- [[https://bash.cyberciti.biz/guide/Bash_display_dialog_boxes|Bash display dialog boxes]]
[[https://ostechnix.com/zenity-create-gui-dialog-boxes-in-bash-scripts/|How To Create GUI Dialog Boxes In Bash Scripts With Zenity In Linux]] \\
\\
#!/bin/bash
SPEAK=$(zenity --entry \
--width 500 \
--title "TTS Speaker" \
--text "Enter line to speak");
echo $SPEAK;
tts --text "ALEXXA! $SPEAK" --model_name "tts_models/en/ljspeech/tacotron2-DDC";
# sleep 5 ;
aplay tts_output.wav ;
\\