N6XRE DokuWiki

1. Coqui STT&TTS Dokuwiki Page

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

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 ;

QR Code
QR Code coqui_stt_tts_dokuwiki_page (generated for current page)