gpaasch commited on
Commit
36b0f3d
·
1 Parent(s): dd35ab8

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
Files changed (1) hide show
  1. requirements.txt +4 -9
requirements.txt CHANGED
@@ -13,12 +13,7 @@ accelerate
13
  langchain
14
  langchain-community
15
 
16
- # audio input (choose at least one):
17
- sounddevice # cross-platform realtime mic capture
18
- pyaudio # alternative on Windows
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