mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
Remove i118n mention in the code
This commit is contained in:
parent
01ee796e6d
commit
bddf542bdf
100
infer-web.py
100
infer-web.py
@ -6,7 +6,6 @@ now_dir = os.getcwd()
|
|||||||
sys.path.append(now_dir)
|
sys.path.append(now_dir)
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
from infer.modules.vc.modules import VC
|
from infer.modules.vc.modules import VC
|
||||||
from i18n.i18n import I18nAuto
|
|
||||||
from configs.config import Config
|
from configs.config import Config
|
||||||
from sklearn.cluster import MiniBatchKMeans
|
from sklearn.cluster import MiniBatchKMeans
|
||||||
import torch, platform
|
import torch, platform
|
||||||
@ -55,9 +54,6 @@ if config.dml == True:
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
fairseq.modules.grad_multiply.GradMultiply.forward = forward_dml
|
fairseq.modules.grad_multiply.GradMultiply.forward = forward_dml
|
||||||
i18n = I18nAuto()
|
|
||||||
logger.info(i18n)
|
|
||||||
# 判断YesNo有能用来Train和加速推理的N卡
|
|
||||||
ngpu = torch.cuda.device_count()
|
ngpu = torch.cuda.device_count()
|
||||||
gpu_infos = []
|
gpu_infos = []
|
||||||
mem = []
|
mem = []
|
||||||
@ -108,7 +104,7 @@ if if_gpu_ok and len(gpu_infos) > 0:
|
|||||||
gpu_info = "\n".join(gpu_infos)
|
gpu_info = "\n".join(gpu_infos)
|
||||||
default_batch_size = min(mem) // 2
|
default_batch_size = min(mem) // 2
|
||||||
else:
|
else:
|
||||||
gpu_info = i18n("Unfortunately, there is no compatible GPU available to support your training.")
|
gpu_info = "Unfortunately, there is no compatible GPU available to support your training."
|
||||||
default_batch_size = 1
|
default_batch_size = 1
|
||||||
gpus = "-".join([i[0] for i in gpu_infos])
|
gpus = "-".join([i[0] for i in gpu_infos])
|
||||||
|
|
||||||
@ -499,24 +495,22 @@ def change_f0_method(f0method8):
|
|||||||
with gr.Blocks(title="RVC WebUI") as app:
|
with gr.Blocks(title="RVC WebUI") as app:
|
||||||
gr.Markdown("## RVC WebUI")
|
gr.Markdown("## RVC WebUI")
|
||||||
gr.Markdown(
|
gr.Markdown(
|
||||||
value=i18n(
|
value="This software is open source under the MIT license. The author does not have any control over the software. Users who use the software and distribute the sounds exported by the software are solely responsible. <br>If you do not agree with this clause, you cannot use or reference any codes and files within the software package. See the root directory <b>Agreement-LICENSE.txt</b> for details."
|
||||||
"This software is open source under the MIT license. The author does not have any control over the software. Users who use the software and distribute the sounds exported by the software are solely responsible. <br>If you do not agree with this clause, you cannot use or reference any codes and files within the software package. See the root directory <b>Agreement-LICENSE.txt</b> for details."
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
with gr.Tabs():
|
with gr.Tabs():
|
||||||
with gr.TabItem(i18n("Model Inference")):
|
with gr.TabItem("Model Inference"):
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
sid0 = gr.Dropdown(label=i18n("Inferencing voice:"), choices=sorted(names))
|
sid0 = gr.Dropdown(label="Inferencing voice:", choices=sorted(names))
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
refresh_button = gr.Button(
|
refresh_button = gr.Button(
|
||||||
i18n("Refresh voice list and index path"), variant="primary"
|
"Refresh voice list and index path", variant="primary"
|
||||||
)
|
)
|
||||||
clean_button = gr.Button(i18n("Unload voice to save GPU memory:"), variant="primary")
|
clean_button = gr.Button("Unload voice to save GPU memory:", variant="primary")
|
||||||
spk_item = gr.Slider(
|
spk_item = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=2333,
|
maximum=2333,
|
||||||
step=1,
|
step=1,
|
||||||
label=i18n("Select Speaker/Singer ID:"),
|
label="Select Speaker/Singer ID:",
|
||||||
value=0,
|
value=0,
|
||||||
visible=False,
|
visible=False,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -524,24 +518,24 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
clean_button.click(
|
clean_button.click(
|
||||||
fn=clean, inputs=[], outputs=[sid0], api_name="infer_clean"
|
fn=clean, inputs=[], outputs=[sid0], api_name="infer_clean"
|
||||||
)
|
)
|
||||||
with gr.TabItem(i18n("Single Inference")):
|
with gr.TabItem("Single Inference"):
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
vc_transform0 = gr.Number(
|
vc_transform0 = gr.Number(
|
||||||
label=i18n("Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):"),
|
label="Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):",
|
||||||
value=0,
|
value=0,
|
||||||
)
|
)
|
||||||
# Add a file uploader for drag & drop.
|
# Add a file uploader for drag & drop.
|
||||||
audio_upload = gr.File(
|
audio_upload = gr.File(
|
||||||
label=i18n("拖拽或选择音频文件"),
|
label="拖拽或选择音频文件",
|
||||||
file_types=[".wav"],
|
file_types=[".wav"],
|
||||||
file_count="single",
|
file_count="single",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
# Existing textbox for the audio file path.
|
# Existing textbox for the audio file path.
|
||||||
input_audio0 = gr.Textbox(
|
input_audio0 = gr.Textbox(
|
||||||
label=i18n("Enter the path of the audio file to be processed (default is the correct format example):"),
|
label="Enter the path of the audio file to be processed (default is the correct format example):",
|
||||||
placeholder="C:\\Users\\Desktop\\model_example.wav",
|
placeholder="C:\\Users\\Desktop\\model_example.wav",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
@ -550,19 +544,17 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
fn=update_audio_path, inputs=audio_upload, outputs=input_audio0
|
fn=update_audio_path, inputs=audio_upload, outputs=input_audio0
|
||||||
)
|
)
|
||||||
file_index1 = gr.Textbox(
|
file_index1 = gr.Textbox(
|
||||||
label=i18n("Path to the feature index file. Leave blank to use the selected result from the dropdown:"),
|
label="Path to the feature index file. Leave blank to use the selected result from the dropdown:",
|
||||||
placeholder="C:\\Users\\Desktop\\model_example.index",
|
placeholder="C:\\Users\\Desktop\\model_example.index",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
file_index2 = gr.Dropdown(
|
file_index2 = gr.Dropdown(
|
||||||
label=i18n("Auto-detect index path and select from the dropdown:"),
|
label="Auto-detect index path and select from the dropdown:",
|
||||||
choices=sorted(index_paths),
|
choices=sorted(index_paths),
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
f0method0 = gr.Radio(
|
f0method0 = gr.Radio(
|
||||||
label=i18n(
|
label="Select the pitch extraction algorithm ('pm': faster extraction but lower-quality speech; 'harvest': better bass but extremely slow; 'crepe': better quality but GPU intensive), 'rmvpe': best quality, and little GPU requirement",
|
||||||
"Select the pitch extraction algorithm ('pm': faster extraction but lower-quality speech; 'harvest': better bass but extremely slow; 'crepe': better quality but GPU intensive), 'rmvpe': best quality, and little GPU requirement"
|
|
||||||
),
|
|
||||||
choices=(["pm", "harvest", "crepe", "rmvpe"] if config.dml == False else ["pm", "harvest", "rmvpe"]),
|
choices=(["pm", "harvest", "crepe", "rmvpe"] if config.dml == False else ["pm", "harvest", "rmvpe"]),
|
||||||
value="rmvpe",
|
value="rmvpe",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -572,7 +564,7 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
resample_sr0 = gr.Slider(
|
resample_sr0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=48000,
|
maximum=48000,
|
||||||
label=i18n("Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:"),
|
label="Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:",
|
||||||
value=0,
|
value=0,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -580,14 +572,14 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
rms_mix_rate0 = gr.Slider(
|
rms_mix_rate0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n("Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:"),
|
label="Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:",
|
||||||
value=0.25,
|
value=0.25,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
protect0 = gr.Slider(
|
protect0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=0.5,
|
maximum=0.5,
|
||||||
label=i18n("Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:"),
|
label="Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:",
|
||||||
value=0.33,
|
value=0.33,
|
||||||
step=0.01,
|
step=0.01,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -595,7 +587,7 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
filter_radius0 = gr.Slider(
|
filter_radius0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=7,
|
maximum=7,
|
||||||
label=i18n("If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness."),
|
label="If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness.",
|
||||||
value=3,
|
value=3,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -603,12 +595,12 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
index_rate1 = gr.Slider(
|
index_rate1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n("Search feature ratio (controls accent strength, too high has artifacting):"),
|
label="Search feature ratio (controls accent strength, too high has artifacting):",
|
||||||
value=0.75,
|
value=0.75,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
f0_file = gr.File(
|
f0_file = gr.File(
|
||||||
label=i18n("F0 curve file (optional). One pitch per line. Replaces the default F0 and pitch modulation:"),
|
label="F0 curve file (optional). One pitch per line. Replaces the default F0 and pitch modulation:",
|
||||||
visible=False,
|
visible=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -620,10 +612,10 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
)
|
)
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
but0 = gr.Button(i18n("Convert"), variant="primary")
|
but0 = gr.Button("Convert", variant="primary")
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
vc_output1 = gr.Textbox(label=i18n("Output information"))
|
vc_output1 = gr.Textbox(label="Output information")
|
||||||
vc_output2 = gr.Audio(label=i18n("Export audio (click on the three dots in the lower right corner to download)"))
|
vc_output2 = gr.Audio(label="Export audio (click on the three dots in the lower right corner to download)")
|
||||||
but0.click(
|
but0.click(
|
||||||
vc.vc_single,
|
vc.vc_single,
|
||||||
[
|
[
|
||||||
@ -643,35 +635,31 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
[vc_output1, vc_output2],
|
[vc_output1, vc_output2],
|
||||||
api_name="infer_convert",
|
api_name="infer_convert",
|
||||||
)
|
)
|
||||||
with gr.TabItem(i18n("Batch Inference")):
|
with gr.TabItem("Batch Inference"):
|
||||||
gr.Markdown(
|
gr.Markdown(
|
||||||
value=i18n(
|
value="Batch conversion. Enter the folder containing the audio files to be converted or upload multiple audio files. The converted audio will be output in the specified folder (default: 'opt')."
|
||||||
"Batch conversion. Enter the folder containing the audio files to be converted or upload multiple audio files. The converted audio will be output in the specified folder (default: 'opt')."
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
vc_transform1 = gr.Number(
|
vc_transform1 = gr.Number(
|
||||||
label=i18n("Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):"),
|
label="Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):",
|
||||||
value=0,
|
value=0,
|
||||||
)
|
)
|
||||||
opt_input = gr.Textbox(
|
opt_input = gr.Textbox(
|
||||||
label=i18n("Specify output folder:"), value="opt"
|
label="Specify output folder:", value="opt"
|
||||||
)
|
)
|
||||||
file_index3 = gr.Textbox(
|
file_index3 = gr.Textbox(
|
||||||
label=i18n("Path to the feature index file. Leave blank to use the selected result from the dropdown:"),
|
label="Path to the feature index file. Leave blank to use the selected result from the dropdown:",
|
||||||
value="",
|
value="",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
file_index4 = gr.Dropdown(
|
file_index4 = gr.Dropdown(
|
||||||
label=i18n("Auto-detect index path and select from the dropdown:"),
|
label="Auto-detect index path and select from the dropdown:",
|
||||||
choices=sorted(index_paths),
|
choices=sorted(index_paths),
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
f0method1 = gr.Radio(
|
f0method1 = gr.Radio(
|
||||||
label=i18n(
|
label="Select the pitch extraction algorithm ('pm': faster extraction but lower-quality speech; 'harvest': better bass but extremely slow; 'crepe': better quality but GPU intensive), 'rmvpe': best quality, and little GPU requirement",
|
||||||
"Select the pitch extraction algorithm ('pm': faster extraction but lower-quality speech; 'harvest': better bass but extremely slow; 'crepe': better quality but GPU intensive), 'rmvpe': best quality, and little GPU requirement"
|
|
||||||
),
|
|
||||||
choices=(
|
choices=(
|
||||||
["pm", "harvest", "crepe", "rmvpe"]
|
["pm", "harvest", "crepe", "rmvpe"]
|
||||||
if config.dml == False
|
if config.dml == False
|
||||||
@ -681,7 +669,7 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
format1 = gr.Radio(
|
format1 = gr.Radio(
|
||||||
label=i18n("Export file format"),
|
label="Export file format",
|
||||||
choices=["wav", "flac", "mp3", "m4a"],
|
choices=["wav", "flac", "mp3", "m4a"],
|
||||||
value="wav",
|
value="wav",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -698,7 +686,7 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
resample_sr1 = gr.Slider(
|
resample_sr1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=48000,
|
maximum=48000,
|
||||||
label=i18n("Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:"),
|
label="Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:",
|
||||||
value=0,
|
value=0,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -706,18 +694,14 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
rms_mix_rate1 = gr.Slider(
|
rms_mix_rate1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n(
|
label="Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:",
|
||||||
"Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:"
|
|
||||||
),
|
|
||||||
value=1,
|
value=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
protect1 = gr.Slider(
|
protect1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=0.5,
|
maximum=0.5,
|
||||||
label=i18n(
|
label="Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:",
|
||||||
"Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:"
|
|
||||||
),
|
|
||||||
value=0.33,
|
value=0.33,
|
||||||
step=0.01,
|
step=0.01,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -725,9 +709,7 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
filter_radius1 = gr.Slider(
|
filter_radius1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=7,
|
maximum=7,
|
||||||
label=i18n(
|
label="If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness.",
|
||||||
"If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness."
|
|
||||||
),
|
|
||||||
value=3,
|
value=3,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -735,25 +717,23 @@ with gr.Blocks(title="RVC WebUI") as app:
|
|||||||
index_rate2 = gr.Slider(
|
index_rate2 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n("Search feature ratio (controls accent strength, too high has artifacting):"),
|
label="Search feature ratio (controls accent strength, too high has artifacting):",
|
||||||
value=1,
|
value=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
dir_input = gr.Textbox(
|
dir_input = gr.Textbox(
|
||||||
label=i18n(
|
label="Enter the path of the audio folder to be processed (copy it from the address bar of the file manager):",
|
||||||
"Enter the path of the audio folder to be processed (copy it from the address bar of the file manager):"
|
|
||||||
),
|
|
||||||
placeholder="C:\\Users\\Desktop\\input_vocal_dir",
|
placeholder="C:\\Users\\Desktop\\input_vocal_dir",
|
||||||
)
|
)
|
||||||
inputs = gr.File(
|
inputs = gr.File(
|
||||||
file_count="multiple",
|
file_count="multiple",
|
||||||
label=i18n("Multiple audio files can also be imported. If a folder path exists, this input is ignored."),
|
label="Multiple audio files can also be imported. If a folder path exists, this input is ignored.",
|
||||||
)
|
)
|
||||||
|
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
but1 = gr.Button(i18n("Convert"), variant="primary")
|
but1 = gr.Button("Convert", variant="primary")
|
||||||
vc_output3 = gr.Textbox(label=i18n("Output information"))
|
vc_output3 = gr.Textbox(label="Output information")
|
||||||
|
|
||||||
but1.click(
|
but1.click(
|
||||||
vc.vc_multi,
|
vc.vc_multi,
|
||||||
|
@ -49,7 +49,7 @@ uvicorn = ">=0.21.1"
|
|||||||
colorama = ">=0.4.5"
|
colorama = ">=0.4.5"
|
||||||
pyworld = "==0.3.2"
|
pyworld = "==0.3.2"
|
||||||
httpx = "*"
|
httpx = "*"
|
||||||
onnxruntime = { version = "*", markers = "sys_platform == 'darwin'" }
|
onnxruntime = { version = "*", markers = "sys_platform == 'darwin'" }
|
||||||
onnxruntime-gpu = { version = "*", markers = "sys_platform != 'darwin'" }
|
onnxruntime-gpu = { version = "*", markers = "sys_platform != 'darwin'" }
|
||||||
torchcrepe = "==0.0.23"
|
torchcrepe = "==0.0.23"
|
||||||
fastapi = "==0.88"
|
fastapi = "==0.88"
|
||||||
|
44
temp_tools/clean_i18n.py
Normal file
44
temp_tools/clean_i18n.py
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
|
def process_file(file_path):
|
||||||
|
"""
|
||||||
|
Reads a file, replaces occurrences of "Any text" (even if multiline)
|
||||||
|
with just the "Any text" part, and writes the file back if changes are made.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
with open(file_path, 'r', encoding='utf-8') as f:
|
||||||
|
content = f.read()
|
||||||
|
except UnicodeDecodeError:
|
||||||
|
print(f"Skipping binary or non-text file: {file_path}")
|
||||||
|
return
|
||||||
|
|
||||||
|
# Regex pattern to match i18n( <whitespace> "Any text" <whitespace> )
|
||||||
|
# It supports both single and double quoted strings, and uses DOTALL
|
||||||
|
# so that the string literal may span multiple lines.
|
||||||
|
pattern = re.compile(
|
||||||
|
r'i18n\s*\(\s*(?P<quote>["\'])(?P<text>.*?)(?P=quote)\s*\)',
|
||||||
|
re.DOTALL
|
||||||
|
)
|
||||||
|
|
||||||
|
# Replacement function returns only the string literal (including quotes).
|
||||||
|
new_content = pattern.sub(lambda m: m.group("quote") + m.group("text") + m.group("quote"), content)
|
||||||
|
|
||||||
|
if new_content != content:
|
||||||
|
with open(file_path, 'w', encoding='utf-8') as f:
|
||||||
|
f.write(new_content)
|
||||||
|
print(f"Updated: {file_path}")
|
||||||
|
|
||||||
|
def process_directory(root_dir):
|
||||||
|
"""
|
||||||
|
Recursively traverse all files in root_dir and process them.
|
||||||
|
"""
|
||||||
|
for dirpath, _, filenames in os.walk(root_dir):
|
||||||
|
for filename in filenames:
|
||||||
|
file_path = os.path.join(dirpath, filename)
|
||||||
|
process_file(file_path)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
# Start processing from the current working directory.
|
||||||
|
project_root = os.getcwd()
|
||||||
|
process_directory(project_root)
|
46
tools/app.py
46
tools/app.py
@ -6,7 +6,6 @@ import gradio as gr
|
|||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
from configs.config import Config
|
from configs.config import Config
|
||||||
from i18n.i18n import I18nAuto
|
|
||||||
from infer.modules.vc.modules import VC
|
from infer.modules.vc.modules import VC
|
||||||
|
|
||||||
logging.getLogger("numba").setLevel(logging.WARNING)
|
logging.getLogger("numba").setLevel(logging.WARNING)
|
||||||
@ -15,9 +14,6 @@ logging.getLogger("urllib3").setLevel(logging.WARNING)
|
|||||||
logging.getLogger("matplotlib").setLevel(logging.WARNING)
|
logging.getLogger("matplotlib").setLevel(logging.WARNING)
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
i18n = I18nAuto()
|
|
||||||
logger.info(i18n)
|
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
config = Config()
|
config = Config()
|
||||||
vc = VC(config)
|
vc = VC(config)
|
||||||
@ -46,31 +42,27 @@ with app:
|
|||||||
RVC 在线demo
|
RVC 在线demo
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
sid = gr.Dropdown(label=i18n("Inferencing voice:"), choices=sorted(names))
|
sid = gr.Dropdown(label="Inferencing voice:", choices=sorted(names))
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
spk_item = gr.Slider(
|
spk_item = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=2333,
|
maximum=2333,
|
||||||
step=1,
|
step=1,
|
||||||
label=i18n("Select Speaker/Singer ID:"),
|
label="Select Speaker/Singer ID:",
|
||||||
value=0,
|
value=0,
|
||||||
visible=False,
|
visible=False,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
sid.change(fn=vc.get_vc, inputs=[sid], outputs=[spk_item])
|
sid.change(fn=vc.get_vc, inputs=[sid], outputs=[spk_item])
|
||||||
gr.Markdown(
|
gr.Markdown(
|
||||||
value=i18n(
|
value="Recommended +12 key for male to female conversion, and -12 key for female to male conversion. If the sound range goes too far and the voice is distorted, you can also adjust it to the appropriate range by yourself."
|
||||||
"Recommended +12 key for male to female conversion, and -12 key for female to male conversion. If the sound range goes too far and the voice is distorted, you can also adjust it to the appropriate range by yourself."
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
vc_input3 = gr.Audio(label="上传音频(长度小于90秒)")
|
vc_input3 = gr.Audio(label="上传音频(长度小于90秒)")
|
||||||
vc_transform0 = gr.Number(
|
vc_transform0 = gr.Number(
|
||||||
label=i18n("Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):"), value=0
|
label="Transpose (integer, number of semitones, raise by an octave: 12, lower by an octave: -12):", value=0
|
||||||
)
|
)
|
||||||
f0method0 = gr.Radio(
|
f0method0 = gr.Radio(
|
||||||
label=i18n(
|
label="选择音高Extract算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU",
|
||||||
"选择音高Extract算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU"
|
|
||||||
),
|
|
||||||
choices=["pm", "harvest", "crepe", "rmvpe"],
|
choices=["pm", "harvest", "crepe", "rmvpe"],
|
||||||
value="pm",
|
value="pm",
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -78,36 +70,34 @@ with app:
|
|||||||
filter_radius0 = gr.Slider(
|
filter_radius0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=7,
|
maximum=7,
|
||||||
label=i18n(
|
label="If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness.",
|
||||||
"If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness."
|
|
||||||
),
|
|
||||||
value=3,
|
value=3,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
with gr.Column():
|
with gr.Column():
|
||||||
file_index1 = gr.Textbox(
|
file_index1 = gr.Textbox(
|
||||||
label=i18n("Path to the feature index file. Leave blank to use the selected result from the dropdown:"),
|
label="Path to the feature index file. Leave blank to use the selected result from the dropdown:",
|
||||||
value="",
|
value="",
|
||||||
interactive=False,
|
interactive=False,
|
||||||
visible=False,
|
visible=False,
|
||||||
)
|
)
|
||||||
file_index2 = gr.Dropdown(
|
file_index2 = gr.Dropdown(
|
||||||
label=i18n("Auto-detect index path and select from the dropdown:"),
|
label="Auto-detect index path and select from the dropdown:",
|
||||||
choices=sorted(index_paths),
|
choices=sorted(index_paths),
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
index_rate1 = gr.Slider(
|
index_rate1 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n("Search feature ratio (controls accent strength, too high has artifacting):"),
|
label="Search feature ratio (controls accent strength, too high has artifacting):",
|
||||||
value=0.88,
|
value=0.88,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
resample_sr0 = gr.Slider(
|
resample_sr0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=48000,
|
maximum=48000,
|
||||||
label=i18n("Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:"),
|
label="Resample the output audio in post-processing to the final sample rate. Set to 0 for no resampling:",
|
||||||
value=0,
|
value=0,
|
||||||
step=1,
|
step=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
@ -115,28 +105,24 @@ with app:
|
|||||||
rms_mix_rate0 = gr.Slider(
|
rms_mix_rate0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=1,
|
maximum=1,
|
||||||
label=i18n(
|
label="Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:",
|
||||||
"Adjust the volume envelope scaling. Closer to 0, the more it mimicks the volume of the original vocals. Can help mask noise and make volume sound more natural when set relatively low. Closer to 1 will be more of a consistently loud volume:"
|
|
||||||
),
|
|
||||||
value=1,
|
value=1,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
protect0 = gr.Slider(
|
protect0 = gr.Slider(
|
||||||
minimum=0,
|
minimum=0,
|
||||||
maximum=0.5,
|
maximum=0.5,
|
||||||
label=i18n(
|
label="Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:",
|
||||||
"Protect voiceless consonants and breath sounds to prevent artifacts such as tearing in electronic music. Set to 0.5 to disable. Decrease the value to increase protection, but it may reduce indexing accuracy:"
|
|
||||||
),
|
|
||||||
value=0.33,
|
value=0.33,
|
||||||
step=0.01,
|
step=0.01,
|
||||||
interactive=True,
|
interactive=True,
|
||||||
)
|
)
|
||||||
f0_file = gr.File(
|
f0_file = gr.File(
|
||||||
label=i18n("F0 curve file (optional). One pitch per line. Replaces the default F0 and pitch modulation:")
|
label="F0 curve file (optional). One pitch per line. Replaces the default F0 and pitch modulation:"
|
||||||
)
|
)
|
||||||
but0 = gr.Button(i18n("Convert"), variant="primary")
|
but0 = gr.Button("Convert", variant="primary")
|
||||||
vc_output1 = gr.Textbox(label=i18n("Output information"))
|
vc_output1 = gr.Textbox(label="Output information")
|
||||||
vc_output2 = gr.Audio(label=i18n("Export audio (click on the three dots in the lower right corner to download)"))
|
vc_output2 = gr.Audio(label="Export audio (click on the three dots in the lower right corner to download)")
|
||||||
but0.click(
|
but0.click(
|
||||||
vc.vc_single,
|
vc.vc_single,
|
||||||
[
|
[
|
||||||
|
Loading…
x
Reference in New Issue
Block a user