mason369 commited on
Commit
84afb80
·
verified ·
1 Parent(s): 2344a28

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +39 -0
requirements.txt ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RVC AI 翻唱依赖
2
+
3
+ # PyTorch (根据 CUDA 版本选择)
4
+ torch>=2.0.0
5
+ torchaudio>=2.0.0
6
+
7
+ # Gradio 界面
8
+ gradio==3.50.2
9
+
10
+ # 音频处理
11
+ librosa>=0.9.0
12
+ soundfile>=0.12.0
13
+ av>=10.0.0
14
+ scipy>=1.10.0
15
+ numpy>=1.23.0
16
+ praat-parselmouth>=0.4.3
17
+ pyworld>=0.3.4
18
+ torchcrepe>=0.0.20
19
+
20
+ # 向量检索
21
+ faiss-cpu>=1.7.4
22
+
23
+ # 工具库
24
+ tqdm>=4.65.0
25
+ requests>=2.28.0
26
+ python-dotenv>=1.0.0
27
+ colorama>=0.4.6
28
+
29
+ # MCP 服务器
30
+ mcp>=1.0.0
31
+
32
+ # AI 翻唱功能
33
+ demucs>=4.0.0 # 人声分离 (Demucs)
34
+ audio-separator[gpu] # 人声分离 (Mel-Band Roformer)
35
+ huggingface_hub>=0.19.0 # 模型下载
36
+ pedalboard>=0.7.0 # 音频效果(混响)
37
+
38
+ ffmpeg-python>=0.2.0 # FFmpeg 绑定
39
+ fairseq==0.12.2 # HuBERT 特征提取