Table of Contents

1. Coqui STT&TTS Dokuwiki Page

=) Top

Coqui STT/TTS is an open source embedded speech-to text/text-to-speech engine

Text-to-Speech generation - TTS v2 Samples

Coqui STT Quickstart

2. Speech-To-Text and Text-To-Speech engines

Top
Kaldi is a toolkit for speech recognition - OpenSLR is a site devoted to hosting speech and language resources

How to use the pre-trained Librispeech model in Kaldi

Rhasspy Voice Assistant

eSpeak - Documents - Zenity

3. Text-To-Speech Sandbox

Top

  1. espeak “ALEXA! What time is it?” or espeak -f <text file>
  2. tts –text “ALEXA! What time is it?” –model_name “tts_models/en/ljspeech/tacotron2-DDC”
  3. aplay tts_output.wav

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 ;