File size: 686 Bytes
251db9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
from espnet2.bin.tts_inference import Text2Speech

# Load the Text2Speech model
model = Text2Speech.from_pretrained("kan-bayashi/ljspeech_fastspeech2")

def generate_audio(text):
    with st.spinner("Generating Speech..."):
        speech, *_ = model(text)
    return speech

def main():
    st.title("Text to Speech with ESPnet2")

    text_input = st.text_area("Enter the text to generate speech:", "")
    if st.button("Generate Speech"):
        if text_input:
            audio = generate_audio(text_input)
            st.audio(audio, format="audio/wav")
        else:
            st.warning("Please enter some text.")

if __name__ == "__main__":
    main()