Spaces:
Sleeping
Sleeping
ASG Models
commited on
Commit
•
02974f8
1
Parent(s):
712a04d
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ import gradio as gr
|
|
6 |
|
7 |
|
8 |
def reverse_audio(audio):
|
9 |
-
|
10 |
-
return (
|
11 |
|
12 |
# Use a pipeline as a high-level helper
|
13 |
import requests
|
|
|
6 |
|
7 |
|
8 |
def reverse_audio(audio):
|
9 |
+
data = audio
|
10 |
+
return (16000, np.flipud(data))
|
11 |
|
12 |
# Use a pipeline as a high-level helper
|
13 |
import requests
|