cmd
git clone https://github.com/deffcolony/rvc-easy-menu.git && cd rvc-easy-menu && RVC-Launcher.bat
Currently not released on main brance so switch to:
sillytavern-extras: Switch to the neo github brance
sillytavern: Switch to the staging brance
In a file browser navigate to \SillyTavern-extras\data\models\rvc then import .pth and .index into the RVC folder
Install requirements with:
pip install -r requirements-rvc.txt
python server.py --coqui-gpu --rvc-save-file --cuda-device=0 --max-content-length=1000 --enable-modules=rvc,coqui-tts
In SillyTavern, go to Extensions --> RVC and enable it
Voicemap:
INSERTCHARCARDNAMEHERE:INSERTYOUREPICVOICEHERE
Select pitch extraction: rmvpe
Go to extensions --> TTS and enable it
Select TTS Provider: Coqui
Voicemap:
INSERTCHARCARDNAMEHERE:tts_models--multilingual--multi-dataset--your_tts\INSERTYOUREPICVOICEHERE.pth[5][0]
If you are on the following:
Windows 10:
pip install py-espeak-ng
Windows 11: Downloaded latest version msi package from:
https://github.com/espeak-ng/espeak-ng/releases/
Choose any speaker you like.
@echo off
REM Environment Variables
set "zipversion=7z2301-x64"
set "ffmpeg_url=https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z"
set "download_path=%TEMP%\ffmpeg.7z"
set "extract_path=C:\ffmpeg"
set "bin_path=%extract_path%\bin"
echo Downloading 7-Zip...
curl -o "%TEMP%\%zipversion%.exe" "https://www.7-zip.org/a/%zipversion%.exe"
echo Launching 7-Zip installer...
"%TEMP%\%zipversion%.exe"
echo Downloading FFmpeg archive...
bitsadmin /transfer "ffmpeg" /download /priority FOREGROUND "%ffmpeg_url%" "%download_path%"
echo Creating ffmpeg directory if it doesn't exist...
if not exist "%extract_path%" (
mkdir "%extract_path%"
)
echo Extracting FFmpeg archive...
"%ProgramFiles%\7-Zip\7z.exe" x "%download_path%" -o"%extract_path%"
echo Moving FFmpeg contents to C:\ffmpeg...
for /d %%i in ("%extract_path%\ffmpeg-*-full_build") do (
xcopy "%%i\bin" "%extract_path%\bin" /E /I /Y
xcopy "%%i\doc" "%extract_path%\doc" /E /I /Y
xcopy "%%i\presets" "%extract_path%\presets" /E /I /Y
rd "%%i" /S /Q
)
setx PATH ""%PATH%;%bin_path%"
echo Deleting FFmpeg archive...
del "%download_path%"
echo Environment variables updated successfully!
pause