Added voice control
Former-commit-id: 6f69079bf44f0d8f9ae40de6b0f1638d103464c2
This commit is contained in:
parent
35c92407a3
commit
53da641909
863 changed files with 192681 additions and 0 deletions
10
external/marytts-5.1.2/bin/marytts-client
vendored
Normal file
10
external/marytts-5.1.2/bin/marytts-client
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
##########################################################################
|
||||
# MARY TTS client
|
||||
##########################################################################
|
||||
|
||||
# Set the Mary base installation directory in an environment variable:
|
||||
BINDIR="`dirname "$0"`"
|
||||
export MARY_BASE="`(cd "$BINDIR"/.. ; pwd)`"
|
||||
|
||||
java -showversion -ea -Dserver.host=localhost -Dserver.port=59125 -jar "$MARY_BASE/lib/marytts-client-5.1.2-jar-with-dependencies.jar"
|
||||
10
external/marytts-5.1.2/bin/marytts-client.bat
vendored
Normal file
10
external/marytts-5.1.2/bin/marytts-client.bat
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
@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
|
||||
5
external/marytts-5.1.2/bin/marytts-component-installer
vendored
Normal file
5
external/marytts-5.1.2/bin/marytts-component-installer
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
BINDIR="`dirname "$0"`"
|
||||
export MARY_BASE="`(cd "$BINDIR"/.. ; pwd)`"
|
||||
java -showversion -ea -Dmary.base="$MARY_BASE" $* -cp "$MARY_BASE/lib/*" marytts.tools.install.InstallerGUI
|
||||
|
||||
9
external/marytts-5.1.2/bin/marytts-component-installer.bat
vendored
Normal file
9
external/marytts-5.1.2/bin/marytts-component-installer.bat
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
@echo off
|
||||
set BINDIR=%~dp0
|
||||
call :RESOLVE "%BINDIR%\.." MARY_BASE
|
||||
java -showversion -ea -Dmary.base="%MARY_BASE%" -cp ".;%MARY_BASE%\lib\*" marytts.tools.install.InstallerGUI
|
||||
goto :EOF
|
||||
|
||||
:RESOLVE
|
||||
set %2=%~f1
|
||||
goto :EOF
|
||||
11
external/marytts-5.1.2/bin/marytts-server
vendored
Normal file
11
external/marytts-5.1.2/bin/marytts-server
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
##########################################################################
|
||||
# MARY TTS server
|
||||
##########################################################################
|
||||
|
||||
# Set the Mary base installation directory in an environment variable:
|
||||
BINDIR="`dirname "$0"`"
|
||||
export MARY_BASE="`(cd "$BINDIR"/.. ; pwd)`"
|
||||
|
||||
|
||||
java -showversion -ea -Xms40m -Xmx1g -cp "$MARY_BASE/lib/*" -Dmary.base="$MARY_BASE" $* marytts.server.Mary
|
||||
14
external/marytts-5.1.2/bin/marytts-server.bat
vendored
Normal file
14
external/marytts-5.1.2/bin/marytts-server.bat
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
|
||||
rem Set the Mary base installation directory in an environment variable:
|
||||
set BINDIR=%~dp0
|
||||
|
||||
call :RESOLVE "%BINDIR%\.." MARY_BASE
|
||||
|
||||
set CLASSPATH=".;%MARY_BASE%\lib\*"
|
||||
java -showversion -ea -Xms40m -Xmx1g -cp %CLASSPATH% "-Dmary.base=%MARY_BASE%" marytts.server.Mary
|
||||
goto :EOF
|
||||
|
||||
:RESOLVE
|
||||
set %2=%~f1
|
||||
goto :EOF
|
||||
Loading…
Add table
Add a link
Reference in a new issue