mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
fix issue https://github.com/RVC-Boss/GPT-SoVITS/issues/1419
This commit is contained in:
parent
74edd5dcf9
commit
bf289e030d
@ -42,7 +42,7 @@ def execute_asr(input_folder, output_folder, model_size, language):
|
||||
print(f"ASR 任务完成->标注文件路径: {output_file_path}\n")
|
||||
return output_file_path
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("-i", "--input_folder", type=str, required=True,
|
||||
help="Path to the folder containing WAV files.")
|
||||
@ -50,7 +50,7 @@ if __name__ == '__main__':
|
||||
help="Output folder to store transcriptions.")
|
||||
parser.add_argument("-s", "--model_size", type=str, default='large',
|
||||
help="Model Size of FunASR is Large")
|
||||
parser.add_argument("-l", "--language", type=str, default='zh', choices=['zh','yue'],
|
||||
parser.add_argument("-l", "--language", type=str, default='zh', choices=['zh','yue','auto'],
|
||||
help="Language of the audio files.")
|
||||
parser.add_argument("-p", "--precision", type=str, default='float16', choices=['float16','float32'],
|
||||
help="fp16 or fp32")#还没接入
|
||||
@ -82,6 +82,7 @@ if __name__ == '__main__':
|
||||
punc_model_revision=punc_model_revision,
|
||||
)
|
||||
|
||||
if __name__ == '__main__':
|
||||
execute_asr(
|
||||
input_folder = cmd.input_folder,
|
||||
output_folder = cmd.output_folder,
|
||||
|
Loading…
x
Reference in New Issue
Block a user