fix missing comma
Browse files
app.py
CHANGED
|
@@ -32,11 +32,11 @@ def main():
|
|
| 32 |
with gr.Tab("Video", id="video"):
|
| 33 |
gr.Interface(
|
| 34 |
fn=speechbrain,
|
| 35 |
-
inputs=[
|
| 36 |
gr.Video(type="filepath"),
|
| 37 |
gr.Radio(choices=["video"], value="video", label="File Type")
|
| 38 |
-
]
|
| 39 |
-
outputs=[
|
| 40 |
gr.Audio(label="Output Audio", type="filepath")
|
| 41 |
],
|
| 42 |
description=description,
|
|
@@ -49,7 +49,7 @@ def main():
|
|
| 49 |
inputs=[
|
| 50 |
gr.Audio(type="filepath"),
|
| 51 |
gr.Radio(choices=["audio"], value="audio", label="File Type")
|
| 52 |
-
]
|
| 53 |
outputs=[
|
| 54 |
gr.Audio(label="Output Audio", type="filepath")
|
| 55 |
],
|
|
|
|
| 32 |
with gr.Tab("Video", id="video"):
|
| 33 |
gr.Interface(
|
| 34 |
fn=speechbrain,
|
| 35 |
+
inputs= [
|
| 36 |
gr.Video(type="filepath"),
|
| 37 |
gr.Radio(choices=["video"], value="video", label="File Type")
|
| 38 |
+
],
|
| 39 |
+
outputs= [
|
| 40 |
gr.Audio(label="Output Audio", type="filepath")
|
| 41 |
],
|
| 42 |
description=description,
|
|
|
|
| 49 |
inputs=[
|
| 50 |
gr.Audio(type="filepath"),
|
| 51 |
gr.Radio(choices=["audio"], value="audio", label="File Type")
|
| 52 |
+
],
|
| 53 |
outputs=[
|
| 54 |
gr.Audio(label="Output Audio", type="filepath")
|
| 55 |
],
|