Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
|
|
2 |
import classla
|
3 |
classla.download('hr')
|
4 |
nlp = classla.Pipeline('hr')
|
|
|
5 |
# def greet(name):
|
6 |
# doc = nlp(name)
|
7 |
# #print(doc.to_conll())
|
@@ -12,10 +13,13 @@ nlp = classla.Pipeline('hr')
|
|
12 |
|
13 |
import gradio as gr
|
14 |
from gtts import gTTS
|
15 |
-
import
|
|
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
19 |
|
20 |
# Function to translate text
|
21 |
def parse_text(text):
|
@@ -26,8 +30,16 @@ def parse_text(text):
|
|
26 |
def play_original_audio(text_to_play):
|
27 |
tts = gTTS(text_to_play, lang='hr') # Assuming the text is in English
|
28 |
tts.save('original_audio.mp3')
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
# Create Gradio interface components
|
33 |
text_input = gr.inputs.Textbox(lines=2, label="Enter text to parse")
|
@@ -56,6 +68,16 @@ def play_audio_button_click():
|
|
56 |
translate_button.command = translate_button_click
|
57 |
play_audio_button.command = play_audio_button_click
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
# Launch the Gradio interface
|
60 |
iface.launch()
|
61 |
|
|
|
2 |
import classla
|
3 |
classla.download('hr')
|
4 |
nlp = classla.Pipeline('hr')
|
5 |
+
|
6 |
# def greet(name):
|
7 |
# doc = nlp(name)
|
8 |
# #print(doc.to_conll())
|
|
|
13 |
|
14 |
import gradio as gr
|
15 |
from gtts import gTTS
|
16 |
+
import wavio
|
17 |
+
|
18 |
|
19 |
+
from io import BytesIO
|
20 |
+
import base64
|
21 |
+
|
22 |
+
|
23 |
|
24 |
# Function to translate text
|
25 |
def parse_text(text):
|
|
|
30 |
def play_original_audio(text_to_play):
|
31 |
tts = gTTS(text_to_play, lang='hr') # Assuming the text is in English
|
32 |
tts.save('original_audio.mp3')
|
33 |
+
|
34 |
+
audio_bytes = BytesIO()
|
35 |
+
tts.write_to_fp(audio_bytes)
|
36 |
+
audio_bytes.seek(0)
|
37 |
+
|
38 |
+
audio = base64.b64encode(audio_bytes.read()).decode("utf-8")
|
39 |
+
audio_player = f'<audio src="data:audio/mpeg;base64,{audio}" controls autoplay></audio>'
|
40 |
+
|
41 |
+
return audio_player
|
42 |
+
|
43 |
|
44 |
# Create Gradio interface components
|
45 |
text_input = gr.inputs.Textbox(lines=2, label="Enter text to parse")
|
|
|
68 |
translate_button.command = translate_button_click
|
69 |
play_audio_button.command = play_audio_button_click
|
70 |
|
71 |
+
def audio_to_html(audio):
|
72 |
+
audio_bytes = BytesIO()
|
73 |
+
wavio.write(audio_bytes, audio[1].astype(np.float32), audio[0], sampwidth=4)
|
74 |
+
audio_bytes.seek(0)
|
75 |
+
|
76 |
+
audio_base64 = base64.b64encode(audio_bytes.read()).decode("utf-8")
|
77 |
+
audio_player = f'<audio src="data:audio/mpeg;base64,{audio_base64}" controls autoplay></audio>'
|
78 |
+
|
79 |
+
return audio_player
|
80 |
+
|
81 |
# Launch the Gradio interface
|
82 |
iface.launch()
|
83 |
|