You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear @JarodMica , firstly thanks for uploading videos about AI on youtube and packaging RVC code into just 1 function. But I am facing error in running this. I just needs to run rvc_convert function, I provided .wav audio file generated from another TTS service.
Complete Error:
audio file path: /media/ravneet/Work SSD/RVC_TTS_Pipeline/ravneet_test_voice.wav
Traceback (most recent call last):
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/test.py", line 6, in
rvc_convert(model_path="guanguanV1.pth",
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 316, in rvc_convert
config=Config(device,is_half)
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 29, in init
self.x_pad, self.x_query, self.x_center, self.x_max = self.device_config()
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 63, in device_config
with open("trainset_preprocess_pipeline_print.py", "r") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'trainset_preprocess_pipeline_print.py'
Here is my code:
from rvc_infer import rvc_convert
if name == "main":
audio_file_name = '/media/ravneet/Work SSD/RVC_TTS_Pipeline/ravneet_test_voice.wav'
print(f"audio file path: {audio_file_name}")
# play_audio(audio_file_name)
rvc_convert(model_path="guanguanV1.pth",
input_path=audio_file_name)
Please help me to resolve the error. Many thanks in advance.
The text was updated successfully, but these errors were encountered:
Dear @JarodMica , firstly thanks for uploading videos about AI on youtube and packaging RVC code into just 1 function. But I am facing error in running this. I just needs to run rvc_convert function, I provided .wav audio file generated from another TTS service.
Complete Error:
audio file path: /media/ravneet/Work SSD/RVC_TTS_Pipeline/ravneet_test_voice.wav
Traceback (most recent call last):
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/test.py", line 6, in
rvc_convert(model_path="guanguanV1.pth",
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 316, in rvc_convert
config=Config(device,is_half)
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 29, in init
self.x_pad, self.x_query, self.x_center, self.x_max = self.device_config()
File "/media/ravneet/Work SSD/RVC_TTS_Pipeline/venv_pipeline/src/rvc-tts-pipe/rvc_infer.py", line 63, in device_config
with open("trainset_preprocess_pipeline_print.py", "r") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'trainset_preprocess_pipeline_print.py'
Here is my code:
from rvc_infer import rvc_convert
if name == "main":
audio_file_name = '/media/ravneet/Work SSD/RVC_TTS_Pipeline/ravneet_test_voice.wav'
print(f"audio file path: {audio_file_name}")
# play_audio(audio_file_name)
rvc_convert(model_path="guanguanV1.pth",
input_path=audio_file_name)
Please help me to resolve the error. Many thanks in advance.
The text was updated successfully, but these errors were encountered: