Spaces:
Runtime error
Runtime error
File size: 10,819 Bytes
8b96836 1d04a59 8b96836 1d04a59 8b96836 ee904a2 8b96836 ee904a2 8b96836 10ed4c9 8b96836 1d04a59 8b96836 802ef36 8b96836 802ef36 8b96836 b6d83ca 8b96836 b6d83ca 8b96836 b6d83ca ee904a2 8b96836 b6d83ca ee904a2 8b96836 b6d83ca 90f7bea ee904a2 |
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
from typing import Union
import asyncio
import json
from os import path, getenv
import gradio as gr
import torch
import numpy as np
import librosa
import edge_tts
from config import device
import util
from infer_pack.models import (
SynthesizerTrnMs256NSFsid,
SynthesizerTrnMs256NSFsid_nono
)
from vc_infer_pipeline import VC
# Reference: https://huggingface.co/spaces/zomehwh/rvc-models/blob/main/app.py#L21 # noqa
in_hf_space = getenv('SYSTEM') == 'spaces'
app_css = '''
#model_info img {
max-width: 100px;
max-height: 100px;
float: right;
}
#model_info p {
margin: unset;
}
'''
app = gr.Blocks(
theme=gr.themes.Glass(),
css=app_css,
analytics_enabled=False
)
# Load hubert model
hubert_model = util.load_hubert_model(device, 'hubert_base.pt')
hubert_model.eval()
# Load models
multi_cfg = json.load(open('multi_config.json', 'r'))
loaded_models = []
for model_name in multi_cfg.get('models'):
print(f'Loading model: {model_name}')
# Load model info
model_info = json.load(
open(path.join('model', model_name, 'config.json'), 'r')
)
# Load RVC checkpoint
cpt = torch.load(
path.join('model', model_name, model_info['model']),
map_location='cpu'
)
tgt_sr = cpt['config'][-1]
cpt['config'][-3] = cpt['weight']['emb_g.weight'].shape[0] # n_spk
if_f0 = cpt.get('f0', 1)
net_g: Union[SynthesizerTrnMs256NSFsid, SynthesizerTrnMs256NSFsid_nono]
if if_f0 == 1:
net_g = SynthesizerTrnMs256NSFsid(
*cpt['config'],
is_half=util.is_half(device)
)
else:
net_g = SynthesizerTrnMs256NSFsid_nono(*cpt['config'])
del net_g.enc_q
# According to original code, this thing seems necessary.
print(net_g.load_state_dict(cpt['weight'], strict=False))
net_g.eval().to(device)
net_g = net_g.half() if util.is_half(device) else net_g.float()
vc = VC(tgt_sr, device, util.is_half(device))
loaded_models.append(dict(
name=model_name,
metadata=model_info,
vc=vc,
net_g=net_g,
if_f0=if_f0,
target_sr=tgt_sr
))
print(f'Models loaded: {len(loaded_models)}')
# Edge TTS speakers
tts_speakers_list = asyncio.get_event_loop().run_until_complete(edge_tts.list_voices()) # noqa
# https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI/blob/main/infer-web.py#L118 # noqa
def vc_func(input_audio, model_index, pitch_adjust, f0_method, feat_ratio):
if input_audio is None:
return (None, 'Please provide input audio.')
if model_index is None:
return (None, 'Please select a model.')
model = loaded_models[model_index]
# Reference: so-vits
(audio_samp, audio_npy) = input_audio
# https://huggingface.co/spaces/zomehwh/rvc-models/blob/main/app.py#L49
if (audio_npy.shape[0] / audio_samp) > 30 and in_hf_space:
return (None, 'Input audio is longer than 30 secs.')
# Bloody hell: https://stackoverflow.com/questions/26921836/
if audio_npy.dtype != np.float32: # :thonk:
audio_npy = (
audio_npy / np.iinfo(audio_npy.dtype).max
).astype(np.float32)
if len(audio_npy.shape) > 1:
audio_npy = librosa.to_mono(audio_npy.transpose(1, 0))
if audio_samp != 16000:
audio_npy = librosa.resample(
audio_npy,
orig_sr=audio_samp,
target_sr=16000
)
pitch_int = int(pitch_adjust)
times = [0, 0, 0]
output_audio = model['vc'].pipeline(
hubert_model,
model['net_g'],
model['metadata'].get('speaker_id', 0),
audio_npy,
times,
pitch_int,
f0_method,
path.join('model', model['name'], model['metadata']['feat_index']),
path.join('model', model['name'], model['metadata']['feat_npy']),
feat_ratio,
model['if_f0']
)
print(f'npy: {times[0]}s, f0: {times[1]}s, infer: {times[2]}s')
return ((model['target_sr'], output_audio), 'Success')
async def edge_tts_vc_func(
input_text, model_index, tts_speaker, pitch_adjust, f0_method, feat_ratio
):
if input_text is None:
return (None, 'Please provide TTS text.')
if tts_speaker is None:
return (None, 'Please select TTS speaker.')
if model_index is None:
return (None, 'Please select a model.')
speaker = tts_speakers_list[tts_speaker]['ShortName']
(tts_np, tts_sr) = await util.call_edge_tts(speaker, input_text)
return vc_func(
(tts_sr, tts_np),
model_index,
pitch_adjust,
f0_method,
feat_ratio
)
def update_model_info(model_index):
if model_index is None:
return str(
'### Model info\n'
'Please select a model from dropdown above.'
)
model = loaded_models[model_index]
model_icon = model['metadata'].get('icon', '')
return str(
'### Model info\n'
'![model icon]({icon})'
'**{name}**\n\n'
'Author: {author}\n\n'
'Source: {source}\n\n'
'{note}'
).format(
name=model['metadata'].get('name'),
author=model['metadata'].get('author', 'Anonymous'),
source=model['metadata'].get('source', 'Unknown'),
note=model['metadata'].get('note', ''),
icon=(
model_icon
if model_icon.startswith(('http://', 'https://'))
else '/file/model/%s/%s' % (model['name'], model_icon)
)
)
def _example_vc(input_audio, model_index, pitch_adjust, f0_method, feat_ratio):
(audio, message) = vc_func(
input_audio, model_index, pitch_adjust, f0_method, feat_ratio
)
return (
audio,
message,
update_model_info(model_index)
)
async def _example_edge_tts(
input_text, model_index, tts_speaker, pitch_adjust, f0_method, feat_ratio
):
(audio, message) = await edge_tts_vc_func(
input_text, model_index, tts_speaker, pitch_adjust, f0_method,
feat_ratio
)
return (
audio,
message,
update_model_info(model_index)
)
with app:
gr.Markdown(
'## Simple, Stupid RVC Inference WebUI\n'
'Another RVC inference WebUI based on [RVC-WebUI](https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI), ' # noqa
'some code and features inspired from so-vits and [zomehwh/rvc-models](https://huggingface.co/spaces/zomehwh/rvc-models).\n' # noqa
)
with gr.Row():
with gr.Column():
with gr.Tab('Audio conversion'):
input_audio = gr.Audio(label='Input audio')
vc_convert_btn = gr.Button('Convert', variant='primary')
with gr.Tab('TTS conversion'):
tts_input = gr.TextArea(
label='TTS input text'
)
tts_speaker = gr.Dropdown(
[
'%s (%s)' % (
s['FriendlyName'],
s['Gender']
)
for s in tts_speakers_list
],
label='TTS speaker',
type='index'
)
tts_convert_btn = gr.Button('Convert', variant='primary')
pitch_adjust = gr.Slider(
label='Pitch',
minimum=-24,
maximum=24,
step=1,
value=0
)
f0_method = gr.Radio(
label='f0 methods',
choices=['pm', 'harvest'],
value='pm',
interactive=True
)
feat_ratio = gr.Slider(
label='Feature ratio',
minimum=0,
maximum=1,
step=0.1,
value=0.6
)
with gr.Column():
# Model select
model_index = gr.Dropdown(
[
'%s - %s' % (
m['metadata'].get('source', 'Unknown'),
m['metadata'].get('name')
)
for m in loaded_models
],
label='Model',
type='index'
)
# Model info
with gr.Box():
model_info = gr.Markdown(
'### Model info\n'
'Please select a model from dropdown above.',
elem_id='model_info'
)
output_audio = gr.Audio(label='Output audio')
output_msg = gr.Textbox(label='Output message')
multi_examples = multi_cfg.get('examples')
if multi_examples:
with gr.Accordion('Sweet sweet examples', open=False):
with gr.Row():
# VC Example
if multi_examples.get('vc'):
gr.Examples(
label='Audio conversion examples',
examples=multi_examples.get('vc'),
inputs=[
input_audio, model_index, pitch_adjust, f0_method,
feat_ratio
],
outputs=[output_audio, output_msg, model_info],
fn=_example_vc,
cache_examples=False,
run_on_click=False
)
# Edge TTS Example
if multi_examples.get('tts_vc'):
gr.Examples(
label='TTS conversion examples',
examples=multi_examples.get('tts_vc'),
inputs=[
tts_input, model_index, tts_speaker, pitch_adjust,
f0_method, feat_ratio
],
outputs=[output_audio, output_msg, model_info],
fn=_example_edge_tts,
cache_examples=False,
run_on_click=False
)
vc_convert_btn.click(
vc_func,
[input_audio, model_index, pitch_adjust, f0_method, feat_ratio],
[output_audio, output_msg],
api_name='audio_conversion'
)
tts_convert_btn.click(
edge_tts_vc_func,
[
tts_input, model_index, tts_speaker, pitch_adjust, f0_method,
feat_ratio
],
[output_audio, output_msg],
api_name='tts_conversion'
)
model_index.change(
update_model_info,
inputs=[model_index],
outputs=[model_info],
show_progress=False,
queue=False
)
app.queue(
concurrency_count=1,
max_size=20,
api_open=False
).launch()
|