Retrieval-based-Voice-Conversion-WebUI icon indicating copy to clipboard operation
Retrieval-based-Voice-Conversion-WebUI copied to clipboard

RVC-UI working with M1 MacOS, ffmpeg issue

Open sakanventures opened this issue 2 years ago • 1 comments

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?? Screenshot_2023-09-01_at_4 46 53_PM

sakanventures avatar Sep 02 '23 00:09 sakanventures

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

image

The error is resolved.Hope it helps you.

vivekjvsdot avatar Mar 09 '24 11:03 vivekjvsdot