diff --git a/Ensemble-Outputs.bat b/Ensemble-Outputs.bat new file mode 100644 index 0000000..72903ae --- /dev/null +++ b/Ensemble-Outputs.bat @@ -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 \ No newline at end of file