Spaces:
Runtime error
Runtime error
Commit
·
4f6cb10
1
Parent(s):
e665e4a
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ import gradio as gr
|
|
3 |
def dem(audio):
|
4 |
print(type(audio))
|
5 |
print(audio)
|
|
|
|
|
6 |
return audio
|
7 |
|
8 |
|
|
|
3 |
def dem(audio):
|
4 |
print(type(audio))
|
5 |
print(audio)
|
6 |
+
sr,y = audio
|
7 |
+
print(f"Speech rate:{sr} and audio : {y}")
|
8 |
return audio
|
9 |
|
10 |
|