Update app.py
Browse files
app.py
CHANGED
@@ -8,4 +8,5 @@ AudioSegment.ffmpeg = which("ffmpeg")
|
|
8 |
def echo(audio: tuple[int, np.ndarray]) -> tuple[int, np.ndarray]:
|
9 |
yield audio
|
10 |
|
11 |
-
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive")
|
|
|
|
8 |
def echo(audio: tuple[int, np.ndarray]) -> tuple[int, np.ndarray]:
|
9 |
yield audio
|
10 |
|
11 |
+
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive")
|
12 |
+
stream.ui.launch(share=True)
|