Spaces:
Build error
Build error
If you’re using Gradio’s built-in browser mic input (e.g. gr.Audio(source="microphone") for real-time ASR), you can drop both sounddevice and pyaudio. You’ll still need ffmpeg on the server (or your dev box) so Gradio can transcode incoming audio blobs
Browse files- requirements.txt +4 -9
requirements.txt
CHANGED
@@ -13,12 +13,7 @@ accelerate
|
|
13 |
langchain
|
14 |
langchain-community
|
15 |
|
16 |
-
# audio
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
# (system requirement, not a pip package)
|
21 |
-
# • ffmpeg must be installed on your machine for any audio I/O
|
22 |
-
# • Debian/Ubuntu: sudo apt install ffmpeg
|
23 |
-
# • macOS (homebrew): brew install ffmpeg
|
24 |
-
# • Windows: download from https://ffmpeg.org/download.html
|
|
|
13 |
langchain
|
14 |
langchain-community
|
15 |
|
16 |
+
# system requirement for audio I/O (ffmpeg must be installed):
|
17 |
+
# • Debian/Ubuntu: sudo apt install ffmpeg
|
18 |
+
# • macOS (homebrew): brew install ffmpeg
|
19 |
+
# • Windows: download from https://ffmpeg.org/download.html
|
|
|
|
|
|
|
|
|
|