Update app.py
Browse files
app.py
CHANGED
@@ -114,6 +114,7 @@ examples = [
|
|
114 |
]
|
115 |
|
116 |
|
117 |
-
interface = gr.Interface(fn=text_to_speech, inputs="text", outputs="audio", verbose = True, title="Urdu TTS",
|
|
|
118 |
interface.launch()
|
119 |
|
|
|
114 |
]
|
115 |
|
116 |
|
117 |
+
interface = gr.Interface(fn=text_to_speech, inputs="text", outputs="audio", verbose = True, title="Urdu TTS",
|
118 |
+
description = "A simple Urdu Text to Speech Application. It is not by any means perfect and will not work for all text. You can sometimes expect it to generate random noise on an input of your choice. Right now it works successfully on very basic urdu text, such the ones in the example.", examples = examples)
|
119 |
interface.launch()
|
120 |
|