Remove i118n mention in the code

This commit is contained in:
VSlobolinskyi 2025-03-19 13:56:21 +02:00
parent 01ee796e6d
commit bddf542bdf
4 changed files with 101 additions and 91 deletions

View File

@ -6,7 +6,6 @@ now_dir = os.getcwd()
sys.path.append(now_dir)
load_dotenv()
from infer.modules.vc.modules import VC
from i18n.i18n import I18nAuto
from configs.config import Config
from sklearn.cluster import MiniBatchKMeans
import torch, platform
@ -55,9 +54,6 @@ if config.dml == True:
return res
fairseq.modules.grad_multiply.GradMultiply.forward = forward_dml
i18n = I18nAuto()
logger.info(i18n)
# 判断YesNo有能用来Train和加速推理的N卡
ngpu = torch.cuda.device_count()
gpu_infos = []
mem = []
@ -108,7 +104,7 @@ if if_gpu_ok and len(gpu_infos) > 0:
gpu_info = "\n".join(gpu_infos)
default_batch_size = min(mem) // 2
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
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:
gr.Markdown("## RVC WebUI")
gr.Markdown(
value=i18n(
"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."
)
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."
)
with gr.Tabs():
with gr.TabItem(i18n("Model Inference")):
with gr.TabItem("Model Inference"):
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():
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(
minimum=0,
maximum=2333,
step=1,
label=i18n("Select Speaker/Singer ID:"),
label="Select Speaker/Singer ID:",
value=0,
visible=False,
interactive=True,
@ -524,24 +518,24 @@ with gr.Blocks(title="RVC WebUI") as app:
clean_button.click(
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.Row():
with gr.Column():
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,
)
# Add a file uploader for drag & drop.
audio_upload = gr.File(
label=i18n("拖拽或选择音频文件"),
label="拖拽或选择音频文件",
file_types=[".wav"],
file_count="single",
interactive=True,
)
# Existing textbox for the audio file path.
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",
interactive=True,
)
@ -550,19 +544,17 @@ with gr.Blocks(title="RVC WebUI") as app:
fn=update_audio_path, inputs=audio_upload, outputs=input_audio0
)
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",
interactive=True,
)
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),
interactive=True,
)
f0method0 = gr.Radio(
label=i18n(
"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"
),
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",
choices=(["pm", "harvest", "crepe", "rmvpe"] if config.dml == False else ["pm", "harvest", "rmvpe"]),
value="rmvpe",
interactive=True,
@ -572,7 +564,7 @@ with gr.Blocks(title="RVC WebUI") as app:
resample_sr0 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
@ -580,14 +572,14 @@ with gr.Blocks(title="RVC WebUI") as app:
rms_mix_rate0 = gr.Slider(
minimum=0,
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,
interactive=True,
)
protect0 = gr.Slider(
minimum=0,
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,
step=0.01,
interactive=True,
@ -595,7 +587,7 @@ with gr.Blocks(title="RVC WebUI") as app:
filter_radius0 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
@ -603,12 +595,12 @@ with gr.Blocks(title="RVC WebUI") as app:
index_rate1 = gr.Slider(
minimum=0,
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,
interactive=True,
)
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,
)
@ -620,10 +612,10 @@ with gr.Blocks(title="RVC WebUI") as app:
)
with gr.Group():
with gr.Column():
but0 = gr.Button(i18n("Convert"), variant="primary")
but0 = gr.Button("Convert", variant="primary")
with gr.Row():
vc_output1 = gr.Textbox(label=i18n("Output information"))
vc_output2 = gr.Audio(label=i18n("Export audio (click on the three dots in the lower right corner to download)"))
vc_output1 = gr.Textbox(label="Output information")
vc_output2 = gr.Audio(label="Export audio (click on the three dots in the lower right corner to download)")
but0.click(
vc.vc_single,
[
@ -643,35 +635,31 @@ with gr.Blocks(title="RVC WebUI") as app:
[vc_output1, vc_output2],
api_name="infer_convert",
)
with gr.TabItem(i18n("Batch Inference")):
with gr.TabItem("Batch Inference"):
gr.Markdown(
value=i18n(
"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')."
)
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')."
)
with gr.Row():
with gr.Column():
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,
)
opt_input = gr.Textbox(
label=i18n("Specify output folder:"), value="opt"
label="Specify output folder:", value="opt"
)
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="",
interactive=True,
)
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),
interactive=True,
)
f0method1 = gr.Radio(
label=i18n(
"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"
),
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",
choices=(
["pm", "harvest", "crepe", "rmvpe"]
if config.dml == False
@ -681,7 +669,7 @@ with gr.Blocks(title="RVC WebUI") as app:
interactive=True,
)
format1 = gr.Radio(
label=i18n("Export file format"),
label="Export file format",
choices=["wav", "flac", "mp3", "m4a"],
value="wav",
interactive=True,
@ -698,7 +686,7 @@ with gr.Blocks(title="RVC WebUI") as app:
resample_sr1 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
@ -706,18 +694,14 @@ with gr.Blocks(title="RVC WebUI") as app:
rms_mix_rate1 = gr.Slider(
minimum=0,
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=1,
interactive=True,
)
protect1 = gr.Slider(
minimum=0,
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,
step=0.01,
interactive=True,
@ -725,9 +709,7 @@ with gr.Blocks(title="RVC WebUI") as app:
filter_radius1 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
@ -735,25 +717,23 @@ with gr.Blocks(title="RVC WebUI") as app:
index_rate2 = gr.Slider(
minimum=0,
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,
interactive=True,
)
with gr.Row():
dir_input = gr.Textbox(
label=i18n(
"Enter the path of the audio folder to be processed (copy it from the address bar of the file manager):"
),
label="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",
)
inputs = gr.File(
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():
but1 = gr.Button(i18n("Convert"), variant="primary")
vc_output3 = gr.Textbox(label=i18n("Output information"))
but1 = gr.Button("Convert", variant="primary")
vc_output3 = gr.Textbox(label="Output information")
but1.click(
vc.vc_multi,

View File

@ -49,7 +49,7 @@ uvicorn = ">=0.21.1"
colorama = ">=0.4.5"
pyworld = "==0.3.2"
httpx = "*"
onnxruntime = { version = "*", markers = "sys_platform == 'darwin'" }
onnxruntime = { version = "*", markers = "sys_platform == 'darwin'" }
onnxruntime-gpu = { version = "*", markers = "sys_platform != 'darwin'" }
torchcrepe = "==0.0.23"
fastapi = "==0.88"

44
temp_tools/clean_i18n.py Normal file
View 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)

View File

@ -6,7 +6,6 @@ import gradio as gr
from dotenv import load_dotenv
from configs.config import Config
from i18n.i18n import I18nAuto
from infer.modules.vc.modules import VC
logging.getLogger("numba").setLevel(logging.WARNING)
@ -15,9 +14,6 @@ logging.getLogger("urllib3").setLevel(logging.WARNING)
logging.getLogger("matplotlib").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)
i18n = I18nAuto()
logger.info(i18n)
load_dotenv()
config = Config()
vc = VC(config)
@ -46,31 +42,27 @@ with app:
RVC 在线demo
"""
)
sid = gr.Dropdown(label=i18n("Inferencing voice:"), choices=sorted(names))
sid = gr.Dropdown(label="Inferencing voice:", choices=sorted(names))
with gr.Column():
spk_item = gr.Slider(
minimum=0,
maximum=2333,
step=1,
label=i18n("Select Speaker/Singer ID:"),
label="Select Speaker/Singer ID:",
value=0,
visible=False,
interactive=True,
)
sid.change(fn=vc.get_vc, inputs=[sid], outputs=[spk_item])
gr.Markdown(
value=i18n(
"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."
)
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."
)
vc_input3 = gr.Audio(label="上传音频长度小于90秒")
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(
label=i18n(
"选择音高Extract算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU"
),
label="选择音高Extract算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU",
choices=["pm", "harvest", "crepe", "rmvpe"],
value="pm",
interactive=True,
@ -78,36 +70,34 @@ with app:
filter_radius0 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
)
with gr.Column():
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="",
interactive=False,
visible=False,
)
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),
interactive=True,
)
index_rate1 = gr.Slider(
minimum=0,
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,
interactive=True,
)
resample_sr0 = gr.Slider(
minimum=0,
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,
step=1,
interactive=True,
@ -115,28 +105,24 @@ with app:
rms_mix_rate0 = gr.Slider(
minimum=0,
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=1,
interactive=True,
)
protect0 = gr.Slider(
minimum=0,
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,
step=0.01,
interactive=True,
)
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")
vc_output1 = gr.Textbox(label=i18n("Output information"))
vc_output2 = gr.Audio(label=i18n("Export audio (click on the three dots in the lower right corner to download)"))
but0 = gr.Button("Convert", variant="primary")
vc_output1 = gr.Textbox(label="Output information")
vc_output2 = gr.Audio(label="Export audio (click on the three dots in the lower right corner to download)")
but0.click(
vc.vc_single,
[