Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
53b3b5c
1
Parent(s):
b083733
Update to gradio 4.36.1
Browse files
app.py
CHANGED
@@ -229,8 +229,8 @@ with gr.Blocks(title="Audio Fake Detector") as demo:
|
|
229 |
|
230 |
with gr.Row():
|
231 |
with gr.Column():
|
232 |
-
m = gr.Audio(
|
233 |
-
f = gr.Audio(
|
234 |
#y = gr.Textbox(label="Enter YouTube address here")
|
235 |
#v = gr.Video(label="Enter a video", include_audio=True, scale=0.5)
|
236 |
|
|
|
229 |
|
230 |
with gr.Row():
|
231 |
with gr.Column():
|
232 |
+
m = gr.Audio(sources=["microphone"], type="numpy",label="Micro")
|
233 |
+
f = gr.Audio(sources=["upload"], type="filepath", label="Audio file")
|
234 |
#y = gr.Textbox(label="Enter YouTube address here")
|
235 |
#v = gr.Video(label="Enter a video", include_audio=True, scale=0.5)
|
236 |
|