Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,10 +2,65 @@ import gradio as gr
|
|
2 |
import classla
|
3 |
classla.download('hr')
|
4 |
nlp = classla.Pipeline('hr')
|
5 |
-
def greet(name):
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
return doc.to_conll()
|
9 |
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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())
|
8 |
+
# return doc.to_conll()
|
9 |
+
|
10 |
+
# iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
11 |
+
# iface.launch()
|
12 |
+
|
13 |
+
import gradio as gr
|
14 |
+
from gtts import gTTS
|
15 |
+
import pygame
|
16 |
+
|
17 |
+
# Initialize the pygame mixer
|
18 |
+
pygame.mixer.init()
|
19 |
+
|
20 |
+
# Function to translate text
|
21 |
+
def parse_text(text):
|
22 |
+
doc = nlp(text)
|
23 |
return doc.to_conll()
|
24 |
|
25 |
+
# Function to play the original text as audio
|
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 |
+
pygame.mixer.music.load('original_audio.mp3')
|
30 |
+
pygame.mixer.music.play()
|
31 |
+
|
32 |
+
# Create Gradio interface components
|
33 |
+
text_input = gr.inputs.Textbox(lines=2, label="Enter text to parse")
|
34 |
+
parse_button = gr.inputs.Button(text="Parse")
|
35 |
+
play_audio_button = gr.inputs.Button(text="Play Original Audio")
|
36 |
+
|
37 |
+
# Create a Gradio interface
|
38 |
+
iface = gr.Interface(
|
39 |
+
fn=None, # No main function needed
|
40 |
+
inputs=[text_input, target_language, parse_button, play_audio_button],
|
41 |
+
outputs=[gr.outputs.Textbox(label="Parsing")],
|
42 |
+
)
|
43 |
+
|
44 |
+
# Define functions for button clicks
|
45 |
+
def parse_button_click():
|
46 |
+
text = text_input.value
|
47 |
+
target_lang = target_language.value
|
48 |
+
parsed_text = translate_text(text, target_lang)
|
49 |
+
iface.outputs[0].update(parsed_text)
|
50 |
+
|
51 |
+
def play_audio_button_click():
|
52 |
+
text = text_input.value
|
53 |
+
play_original_audio(text)
|
54 |
+
|
55 |
+
# Assign click functions to buttons
|
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 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|