Home Web-based Text-to-Speech with Coqui TTS
Post
Cancel

Web-based Text-to-Speech with Coqui TTS

Having spent years in either IT or Electronics R&D and Repair my eyes are starting to have trouble focusing on fine detail, and being most of my work is now on screen it’s had me looking at ways to alleviate that without super expensive computer glasses, for now. Here’s one of my little pet projects, a web-based text-to-speech app using Coqui TTS libraries for Python and Streamlit. Let’s dive in.

Development environment setup

Let’s get started with a basic python venv.

1
2
3
4
5
cd ~
mkdir coqui-tts
cd coqui-tts
python3 -m venv venv
source venv/bin/activate

The code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import torch
import streamlit as st
from TTS.api import TTS
import tempfile
import os


device = "cuda" if torch.cuda.is_available() else "cpu"
model_name = 'tts_models/en/jenny/jenny'
tts = TTS(model_name).to(device)

st.title('Coqui TTS')

text_to_speak = st.text_area('Entire article text here:', '')


if st.button('Listen'):
    if text_to_speak:

        # temp path needed for audio to listen to
        temp_audio_path = './temp_audio.wav'

        tts.tts_to_file(text=text_to_speak, file_path=temp_audio_path)


        st.audio(temp_audio_path, format='audio/wav')


        os.unlink(temp_audio_path)

Breaking down the code

The imports are pretty straightforward, torch is needed to determine the device type to best process the tts engine.

1
2
3
4
5
import torch
import streamlit as st
from TTS.api import TTS
import tempfile
import os

This next section is all the setup for the tts engine processing object itself. Here torch is testing for cuda cores to process over standard cpu. For the models you could choose from a whole list, I’ll post below how to find them, the one in the code just happens to be my favorite.

1
2
3
device = "cuda" if torch.cuda.is_available() else "cpu"
model_name = 'tts_models/en/jenny/jenny'
tts = TTS(model_name).to(device)

Now we have a few items to set up the streamlit webui, right now we’ll want a title and text entry box.

1
2
3
st.title('Coqui TTS')

text_to_speak = st.text_area('Entire article text here:', '')

Now for the main block of the program. Here a few operations are going on when the ‘Listen’ button is clicked, and if there is text in the text box from earlier, then the text is sent to our tts instance. From there the most stable way I found was to have the tts command output the audio to a temporary file until it is loaded up for playback on the site. Then we use the unlink command to clean up the temp files, both for efficiency and good hygiene as for security server side.

1
2
3
4
5
6
7
8
9
10
11
12
13
if st.button('Listen'):
    if text_to_speak:

        # temp path needed for audio to listen to
        temp_audio_path = './temp_audio.wav'

        tts.tts_to_file(text=text_to_speak, file_path=temp_audio_path)


        st.audio(temp_audio_path, format='audio/wav')


        os.unlink(temp_audio_path)

Now that the code is out of the way here’s how we run the app.

1
streamlit run main.py
This post is licensed under CC BY 4.0 by the author.