Spaces:
Running
on
Zero
Running
on
Zero
Commit
•
ee252bb
1
Parent(s):
ea0ca2f
typos
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ title = "MusicGen Streaming"
|
|
20 |
description = """
|
21 |
Stream the outputs of the MusicGen text-to-music model by playing the generated audio as soon as the first chunk is ready.
|
22 |
Demo uses [MusicGen Small](https://huggingface.co/facebook/musicgen-small) in the 🤗 Transformers library. Note that the
|
23 |
-
demo works best on the Chrome browser. If there is no audio output, try switching
|
24 |
"""
|
25 |
|
26 |
article = """
|
@@ -60,7 +60,7 @@ class MusicgenStreamer(BaseStreamer):
|
|
60 |
):
|
61 |
"""
|
62 |
Streamer that stores playback-ready audio in a queue, to be used by a downstream application as an iterator. This is
|
63 |
-
useful for applications that benefit from
|
64 |
Gradio demo).
|
65 |
|
66 |
Parameters:
|
|
|
20 |
description = """
|
21 |
Stream the outputs of the MusicGen text-to-music model by playing the generated audio as soon as the first chunk is ready.
|
22 |
Demo uses [MusicGen Small](https://huggingface.co/facebook/musicgen-small) in the 🤗 Transformers library. Note that the
|
23 |
+
demo works best on the Chrome browser. If there is no audio output, try switching browser to Chrome.
|
24 |
"""
|
25 |
|
26 |
article = """
|
|
|
60 |
):
|
61 |
"""
|
62 |
Streamer that stores playback-ready audio in a queue, to be used by a downstream application as an iterator. This is
|
63 |
+
useful for applications that benefit from accessing the generated audio in a non-blocking way (e.g. in an interactive
|
64 |
Gradio demo).
|
65 |
|
66 |
Parameters:
|