Spaces:
Runtime error
Runtime error
File size: 414 Bytes
64aefd6 8001ceb 64aefd6 9a2d609 0a73c95 8001ceb 0a73c95 8001ceb 9a2d609 8001ceb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from gtts import gTTS
import gradio as gr
import os
def text_to_audio(text):
# Generate audio from text using gTTS
tts = gTTS(text=text, lang='en', slow=False)
tts.save("test.wav")
return 'test.wav'
iface = gr.Interface(fn = text_to_audio,
inputs = 'text',
outputs = 'audio',
verbose = True,
)
iface.launch()
|