Spaces:
Sleeping
Sleeping
File size: 1,323 Bytes
812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 a7ad758 812ef64 |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import streamlit as st
# from gtts import gTTS
import io
import torch
from TTS.api import TTS
# Function to generate audio from text
# def text_to_audio(text):
# tts = gTTS(text)
# audio = tts.save("output.mp3")
# return audio
st.title("Voice Synthesis App")
# Get device
device = "cuda" if torch.cuda.is_available() else "cpu"
# List available 🐸TTS models
print(TTS().list_models())
# Init TTS
tts = TTS("tts_models/en/ljspeech/overflow").to(device)
# Input form for the user to enter text
user_input = st.text_area("Enter the text:")
if st.button("Generate"):
if user_input:
# audio = text_to_audio(user_input)
# Text to speech to a file
tts.tts_to_file(text="Hello world!", file_path="output.wav")
# Display the audio
st.audio("output.wav", format="audio/wav")
# Create a download link for the audio file
st.markdown("### Download the audio")
with open("output.wav", "rb") as audio_file:
audio_bytes = audio_file.read()
st.download_button(
label="Click to download",
data=audio_bytes,
key="download_audio",
file_name="output.wav",
mime="audio/wav",
)
st.write("Note: This app uses gTTS for text-to-speech conversion.")
|