Chitsanfei
commited on
Commit
•
327a696
1
Parent(s):
8c9e83b
fix: information
Browse files
app.py
CHANGED
@@ -53,6 +53,7 @@ with app:
|
|
53 |
|
54 |
**说明 / Introduction**
|
55 |
- 基于so-vits-svc 4.0的官方库示例修改而成。
|
|
|
56 |
- 所使用的音声训练集基于对话而来,因而转换后的音声在对话表现中会比乐曲中的人声中要好。
|
57 |
- 该项目以无盈利模式进行。
|
58 |
- Modified from the official library example based on so-vits-svc 4.0.
|
@@ -77,7 +78,7 @@ with app:
|
|
77 |
spks = list(model.spk2id.keys())
|
78 |
sid = gr.Dropdown(label="音色", choices=spks, value=spks[0])
|
79 |
vc_input3 = gr.Audio(label="上传音频(长度小于90秒)")
|
80 |
-
vc_transform = gr.Number(label="变调(整数,可以正负,半音数量,升高八度就是12
|
81 |
cluster_ratio = gr.Number(label="聚类模型混合比例,0-1之间,默认为0不启用聚类,能提升音色相似度,但会导致咬字下降(如果使用建议0.5左右)", value=0)
|
82 |
auto_f0 = gr.Checkbox(label="自动f0预测,配合聚类模型f0预测效果更好,会导致变调功能失效(仅限转换语音,歌声不要勾选此项会究极跑调)", value=False)
|
83 |
slice_db = gr.Number(label="切片阈值", value=-40)
|
|
|
53 |
|
54 |
**说明 / Introduction**
|
55 |
- 基于so-vits-svc 4.0的官方库示例修改而成。
|
56 |
+
- 该项目用于便携的基于云计算的变声成为Project Sekai的角色鳳えむ(凤笑梦)。
|
57 |
- 所使用的音声训练集基于对话而来,因而转换后的音声在对话表现中会比乐曲中的人声中要好。
|
58 |
- 该项目以无盈利模式进行。
|
59 |
- Modified from the official library example based on so-vits-svc 4.0.
|
|
|
78 |
spks = list(model.spk2id.keys())
|
79 |
sid = gr.Dropdown(label="音色", choices=spks, value=spks[0])
|
80 |
vc_input3 = gr.Audio(label="上传音频(长度小于90秒)")
|
81 |
+
vc_transform = gr.Number(label="变调(整数,可以正负,半音数量,升高八度就是12,当你觉得音色不准确时可以适当调高或降低,当自动f0预测勾选后该项失效)", value=0)
|
82 |
cluster_ratio = gr.Number(label="聚类模型混合比例,0-1之间,默认为0不启用聚类,能提升音色相似度,但会导致咬字下降(如果使用建议0.5左右)", value=0)
|
83 |
auto_f0 = gr.Checkbox(label="自动f0预测,配合聚类模型f0预测效果更好,会导致变调功能失效(仅限转换语音,歌声不要勾选此项会究极跑调)", value=False)
|
84 |
slice_db = gr.Number(label="切片阈值", value=-40)
|