-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlocal_plugin.py
226 lines (218 loc) · 9.33 KB
/
local_plugin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
from __future__ import annotations
from tuneflow_py import TuneflowPlugin, Song, ParamDescriptor, WidgetType, TrackType, InjectSource, TuneflowPluginTriggerData, ClipAudioDataInjectData
from typing import Any
import traceback
from inferencer import vc_fn_model, load_custom_model_func
from utils import trim_audio
from pathlib import Path
class SingingVoiceCloneLocal(TuneflowPlugin):
@staticmethod
def provider_id():
return "andantei"
@staticmethod
def plugin_id():
return "singing-voice-clone-local"
@staticmethod
def params(song: Song) -> dict[str, ParamDescriptor]:
# Check if there is any .pth file in the checkpoints folder.
checkpoints_folder = Path(__file__).parent.joinpath("checkpoints")
checkpoint_path = None
config_path = None
if checkpoints_folder.exists():
# Find all files under checkpoints_folder, non-recursively.
checkpoints = [file for file in checkpoints_folder.iterdir() if file.is_file() and file.suffix == ".pth"]
if len(checkpoints) > 0:
checkpoint_path = str(checkpoints[0])
config_file_path = Path(__file__).parent.joinpath('checkpoints').joinpath("config.json")
if config_file_path.exists():
config_path = str(config_file_path)
return {
"clipAudioData": {
"displayName": {
"zh": '音频',
"en": 'Audio',
},
"defaultValue": None,
"widget": {
"type": WidgetType.NoWidget.value,
},
"hidden": True,
"injectFrom": {
"type": InjectSource.ClipAudioData.value,
"options": {
"clips": "triggeredAudioClips"
}
}
},
"modelFile": {
"displayName": {
"zh": '模型文件 (.pth)',
"en": 'Model File (.pth)',
},
"defaultValue": checkpoint_path,
"description": {
"zh": '目前支持so-vits-svc 4.0模型。如需自动加载模型,请将.pth文件和config.json文件放在插件目录下的checkpoints文件夹下。',
"en": 'Currently supports so-vits-svc 4.0 models. If you want to load the model automatically, please put the .pth file and config.json file in the checkpoints folder under the plugin directory.',
},
"widget": {
"type": WidgetType.FileSelector.value,
"config": {
"allowedExtensions": ["pth"],
"selectLocalFile": True
}
},
},
"configFile": {
"displayName": {
"zh": '配置文件 (config.json)',
"en": 'Config File (config.json)',
},
"defaultValue": config_path,
"widget": {
"type": WidgetType.FileSelector.value,
"config": {
"allowedExtensions": ["json"],
"selectLocalFile": True
}
},
},
"pitchOffset": {
"displayName": {
"zh": '变调',
"en": 'Pitch Offset',
},
"description": {
"zh": '半音为单位,+12为升一个八度,-12为降一个八度',
"en": 'Pitch offset in semitones, +12 for one octave up, -12 for one octave down',
},
"defaultValue": 0,
"widget": {
"type": WidgetType.Slider.value,
"config": {
"minValue": -12,
"maxValue": 12,
"step": 1,
}
},
},
"f0MeanPooling": {
"displayName": {
"zh": 'f0均值滤波',
"en": 'f0 mean pooling',
},
"description": {
"zh": '开启后可能帮助改善哑音',
"en": 'May improve muted audio in some cases',
},
"defaultValue": False,
"widget": {
"type": WidgetType.Switch.value,
"config": {
}
},
},
"f0Threshold": {
"displayName": {
"zh": 'f0过滤阈值',
"en": 'f0 filter threshold',
},
"description": {
"zh": '值越大,哑音概率可能越小,同时可能导致音高不准',
"en": 'Larger value may reduce the probability of muted audio, but may also cause pitch inaccuracy',
},
"defaultValue": 0.05,
"widget": {
"type": WidgetType.Slider.value,
"config": {
"minValue": 0,
"maxValue": 1,
"step": 0.01,
}
},
},
"modelBranch": {
"displayName": {
"zh": '模型分支',
"en": 'Model Branch',
},
"description": {
"zh": '如果你不知道这个参数是什么意义,最好保持默认值,如果你确信使用的是Vec768分支,在此选中Vec768-Layer12。',
"en": 'If you don\'t know about this param, keep it as default. If you are sure you are using the Vec768 branch, select Vec768-Layer12',
},
"defaultValue": 'v1',
"widget": {
"type": WidgetType.Select.value,
"config": {
"options": [
{
"value": "v1",
"label": 'v1'
},
{
"value": "Vec768-Layer12",
"label": 'Vec768-Layer12'
}
]
}
},
},
"hifiGanEnhance": {
"displayName": {
"zh": 'HifiGan增强',
"en": 'HifiGan Enhance',
},
"defaultValue": False,
"widget": {
"type": WidgetType.Switch.value
},
},
}
@staticmethod
def run(song: Song, params: dict[str, Any]):
pitchOffset: int = params["pitchOffset"]
f0MeanPooling: bool = params["f0MeanPooling"]
f0Threshold: float = params["f0Threshold"]
model_file: str = params["modelFile"]
config_file: str = params["configFile"]
model_branch: str = params["modelBranch"]
hifi_gan_enhance: bool = params["hifiGanEnhance"]
trigger: TuneflowPluginTriggerData = params["trigger"]
trigger_entity_id = trigger["entities"][0] # type:ignore
track = song.get_track_by_id(
trigger_entity_id["trackId"]) # type:ignore
if track is None:
raise Exception("Cannot find track")
clip = track.get_clip_by_id(trigger_entity_id["clipId"]) # type:ignore
if clip is None:
raise Exception("Cannot find clip")
clip_audio_data_list: ClipAudioDataInjectData = params["clipAudioData"]
try:
model, spk = load_custom_model_func(
config_path=config_file, ckpt_path=model_file, model_branch=model_branch,
hifigan_enhance=hifi_gan_enhance)
result = vc_fn_model(
model, spk, trim_audio(clip_audio_data_list[0]["audioData"]["data"],
song, clip),
vc_transform=pitchOffset, auto_f0=False, cluster_ratio=0, slice_db=-40, noise_scale=0.4,
pad_seconds=0.5, cl_num=0, lg_num=0, lgr_num=0.75, F0_mean_pooling=f0MeanPooling,
enhancer_adaptive_key=0, cr_threshold=f0Threshold)
if not result:
raise Exception("Failed to generate audio")
status, generated_data = result
if status != "Success" or generated_data is None:
raise Exception("Failed to generate audio")
sample_rate, generated_audio_data = generated_data
generated_audio_data.seek(0)
new_track = song.create_track(
TrackType.AUDIO_TRACK, index=song.get_track_index(track.get_id())+1) # type:ignore
new_track.create_audio_clip(clip_start_tick=clip.get_clip_start_tick(), audio_clip_data={
"audio_data": {
"data": generated_audio_data.read(),
"format": "mp3",
},
"duration": clip.get_duration(),
"start_tick": clip.get_clip_start_tick(),
}, clip_end_tick=clip.get_clip_end_tick(), insert_clip=True)
except Exception as e:
print(traceback.format_exc())
raise e