11 lines
254 B
Batchfile
11 lines
254 B
Batchfile
|
|
@echo off
|
||
|
|
set BINDIR=%~dp0
|
||
|
|
call :RESOLVE "%BINDIR%\.." MARY_BASE
|
||
|
|
|
||
|
|
java -showversion -ea -Dserver.host=localhost -Dserver.port=59125 -jar "%MARY_BASE%\lib\marytts-client-5.1.2-jar-with-dependencies.jar"
|
||
|
|
goto :EOF
|
||
|
|
|
||
|
|
:RESOLVE
|
||
|
|
set %2=%~f1
|
||
|
|
goto :EOF
|