File size: 882 Bytes
899fbd2 d747db4 899fbd2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
@echo off
pushd %~dp0
set COEIROINK_DIR=COEIROINK-GPU-v.1.7.2
set COEIROINK_ZIP=%COEIROINK_DIR%.zip
if not exist %COEIROINK_ZIP% (
curl -Lo %COEIROINK_ZIP% https://www.dropbox.com/s/8rycvu4a58in62h/%COEIROINK_ZIP%?dl=1
)
if not exist %COEIROINK_DIR%\ (
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %COEIROINK_ZIP% -DestinationPath .
)
set MYCOE=64274982-857a-11ed-a560-0242ac1c000c
set MYCOE_ZIP=RinneMycoeiroink-20230124.zip
if not exist %MYCOE%\ (
if not exist .\%MYCOE_ZIP% (
curl -LO https://huggingface.co/RinneAi/RinneVoiceSet/resolve/main/%MYCOE_ZIP%
)
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %MYCOE_ZIP% -DestinationPath .
)
if not exist %COEIROINK_DIR%\speaker_info\%MYCOE% (
xcopy /SQ %MYCOE%\ %COEIROINK_DIR%\speaker_info\%MYCOE%\
)
call %COEIROINK_DIR%\COEIROINK.exe
popd
|