mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2024-11-24 07:20:10 +01:00
Add files via upload
This commit is contained in:
parent
9312be372f
commit
e6207a203c
34
Ensemble-Outputs.bat
Normal file
34
Ensemble-Outputs.bat
Normal file
@ -0,0 +1,34 @@
|
||||
@echo off
|
||||
|
||||
:start
|
||||
set choice=
|
||||
set /p choice=Are you processing instrumental outputs? [Y/N]:
|
||||
if not '%choice%'=='' set choice=%choice:~0,1%
|
||||
if '%choice%'=='Y' goto inst
|
||||
if '%choice%'=='y' goto inst
|
||||
if '%choice%'=='N' goto vocals
|
||||
if '%choice%'=='n' goto vocals
|
||||
if '%choice%'=='' goto inst
|
||||
|
||||
:inst
|
||||
ECHO Ensembling Instruments...
|
||||
set modelparam=1band_sr44100_hl512
|
||||
cd /d %~dp0
|
||||
|
||||
python lib/spec_utils.py -a min_mag -m modelparams\%modelparam%.json %* -o "%~n3_Ensembled_Instruments"
|
||||
ECHO Complete!
|
||||
goto end
|
||||
:end
|
||||
pause
|
||||
exit
|
||||
:vocals
|
||||
ECHO Ensembling Vocals...
|
||||
set modelparam=1band_sr44100_hl512
|
||||
cd /d %~dp0
|
||||
|
||||
python lib/spec_utils.py -a max_mag -m modelparams\%modelparam%.json %* -o "%~n3_Ensembled_Vocals"
|
||||
ECHO Complete!
|
||||
goto end
|
||||
:end
|
||||
pause
|
||||
exit
|
Loading…
Reference in New Issue
Block a user