Spaces:
Sleeping
Sleeping
marioluciofjr
commited on
Commit
•
2d5f3b0
1
Parent(s):
784afc6
Update app.py
Browse files
app.py
CHANGED
@@ -33,12 +33,12 @@ def transcribe_and_analyze(audio_file):
|
|
33 |
# Criando a interface Gradio
|
34 |
interface = gr.Interface(
|
35 |
fn=transcribe_and_analyze,
|
36 |
-
inputs=gr.Audio(
|
37 |
outputs=[
|
38 |
gr.Textbox(label="Transcrição do Áudio"),
|
39 |
gr.Textbox(label="Análise de Sentimento")
|
40 |
],
|
41 |
-
title="
|
42 |
description="Envie um arquivo de áudio de até 1 hora para transcrição e análise de sentimentos.",
|
43 |
theme="default"
|
44 |
)
|
|
|
33 |
# Criando a interface Gradio
|
34 |
interface = gr.Interface(
|
35 |
fn=transcribe_and_analyze,
|
36 |
+
inputs=gr.Audio(type="filepath", label="Faça upload do seu áudio"), # Removed source argument
|
37 |
outputs=[
|
38 |
gr.Textbox(label="Transcrição do Áudio"),
|
39 |
gr.Textbox(label="Análise de Sentimento")
|
40 |
],
|
41 |
+
title="Transcrição e Análise de Sentimentos de Áudio",
|
42 |
description="Envie um arquivo de áudio de até 1 hora para transcrição e análise de sentimentos.",
|
43 |
theme="default"
|
44 |
)
|