Update app.py
Browse files
app.py
CHANGED
@@ -27,13 +27,6 @@ with gr.Blocks() as demo:
|
|
27 |
stream_file, [input_audio, format], stream_as_file_output
|
28 |
)
|
29 |
|
30 |
-
gr.Examples(
|
31 |
-
[["audio/cantina.wav", "wav"], ["audio/cantina.wav", "mp3"]],
|
32 |
-
[input_audio, format],
|
33 |
-
fn=stream_file,
|
34 |
-
outputs=stream_as_file_output,
|
35 |
-
cache_examples=True,
|
36 |
-
)
|
37 |
|
38 |
with gr.Column():
|
39 |
stream_as_bytes_btn = gr.Button("Stream as Bytes")
|
|
|
27 |
stream_file, [input_audio, format], stream_as_file_output
|
28 |
)
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
with gr.Column():
|
32 |
stream_as_bytes_btn = gr.Button("Stream as Bytes")
|