RVC-UI working with M1 MacOS, ffmpeg issue
So I got everything setup with the RVC-UI on my Mac and it launches successfully but when I try to use a .pth file and convert audio, I get an error with the ffmpeg.
Any assistance??
I got the same error while working with RVC-WebUI. Upon investigation,I found that there are hidden files in the audio(training dataset) directory.I named it as 'work' In my case,there were ".DS_Store" files. The ".DS_Store" file is a system file created by macOS Finder to store custom attributes of a folder. It's not an audio file, so attempting to load it as audio is causing the error.
to delete the files(macos)
find . -name ".DS_Store" -print -delete
The error is resolved.Hope it helps you.