Update app.py
Browse files
app.py
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
|
4 |
-
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
|
17 |
|
18 |
-
|
19 |
|
20 |
|
21 |
# import requests
|
@@ -59,24 +59,24 @@ import gradio as gr
|
|
59 |
|
60 |
# demo.launch()
|
61 |
|
62 |
-
import openai
|
63 |
-
import os
|
64 |
-
#from pymongo import MongoClient
|
65 |
|
66 |
-
api_key = os.environ.get("OPENAI_API_KEY")
|
67 |
|
68 |
-
def transcribe_audio(filepath):
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
|
73 |
|
74 |
-
# Create a Gradio Tabbed Interface
|
75 |
-
iface = gr.Interface(
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
)
|
80 |
|
81 |
|
82 |
-
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from TTS.api import TTS
|
3 |
|
4 |
+
tts = TTS(model_name="tts_models/multilingual/multi-dataset/your_tts", progress_bar=False, gpu=False)
|
5 |
|
6 |
+
def predict(text):
|
7 |
+
file_path = "output.wav"
|
8 |
+
tts.tts_to_file(text, speaker=tts.speakers[0], language="en", file_path=file_path)
|
9 |
+
return file_path
|
10 |
|
11 |
+
demo = gr.Interface(
|
12 |
+
fn=predict,
|
13 |
+
inputs='text',
|
14 |
+
outputs='audio'
|
15 |
+
)
|
16 |
|
17 |
|
18 |
+
demo.launch()
|
19 |
|
20 |
|
21 |
# import requests
|
|
|
59 |
|
60 |
# demo.launch()
|
61 |
|
62 |
+
# import openai
|
63 |
+
# import os
|
64 |
+
# #from pymongo import MongoClient
|
65 |
|
66 |
+
# api_key = os.environ.get("OPENAI_API_KEY")
|
67 |
|
68 |
+
# def transcribe_audio(filepath):
|
69 |
+
# audio = open(filepath, "rb")
|
70 |
+
# transcript = openai.Audio.transcribe("whisper-1", audio)
|
71 |
+
# return transcript['text']
|
72 |
|
73 |
|
74 |
+
# # Create a Gradio Tabbed Interface
|
75 |
+
# iface = gr.Interface(
|
76 |
+
# fn=transcribe_audio,
|
77 |
+
# inputs= gr.Audio(source="upload", type="filepath"),
|
78 |
+
# outputs="text",
|
79 |
+
# )
|
80 |
|
81 |
|
82 |
+
# iface.launch()
|