SecondPass.cfg 1.79 KB
############################################
# file : SecondPass.cfg
# brief : SecondPass.sh configuration file
#
############################################

. ${OTMEDIA_HOME}/cfg/main_cfg.cfg

# Arch
## default empty 32
#ARCH=""
## else
#ARCH=".64"

# Debug mode, set to 1
#DEBUG=0

# Verbose mode 
#VERBOSE=0

# Check flag
#CHECK=0

# Rerun - if =1 force to redo everythings
#RERUN=0

# Bin PATH
BIN_PATH=$OTMEDIA_HOME/bin

# Scripts tools path
SCRIPTS_PATH=$OTMEDIA_HOME/tools/scripts

# Data
RULES=$OTMEDIA_HOME/data/rules

#-----------------------#
# SPEERAL CONFIGURATION #
#-----------------------#
SPEERAL_PATH=$OTMEDIA_HOME/tools/Speeral/       # speeral install path
SPEERAL_TOOLS=$SPEERAL_PATH/bin/	           	# speeral tools binaries path
SPEERAL_CFG_PATH=$SPEERAL_PATH/CFG/             # speeral configuration dir
SPEERAL_CFG_FILE=SpeeralSecondPass.xml          # speeral configuration file name
SPEERAL_BIN_NAME=speeral_bin                    # speeral binary name
SPEERAL_BIN=$SPEERAL_PATH/bin/$SPEERAL_BIN_NAME # speeral
SPEERAL_AM=$SPEERAL_PATH/AM/                    # speeral acoustic models dir

# number of forks for speeral
FORKS="--forks 1"

    # => Acoutic Models #
# male speech
mod_ms="Best_WB_M"	# model wideband M  
# Female speech
mod_fs="Best_WB_F"	# model wideband F
# Male phone
mod_mt="Best_NB_M"	# model narrowband M
# Female phone
mod_ft="Best_NB_F"	# model narrowband F  

#mod_ms="ester_936"
#mod_fs="ester_936_F"
#mod_mt="ester_936"
#mod_ft="ester_936_F"

MODS=("$mod_ms" "$mod_fs" "$mod_mt" "$mod_ft")	# Models names
MTAG=("M#S" "F#S" "M#T" "F#T")			# Models tags in files

# Config file to use for models
SPEERAL_CFG=("$SPEERAL_CFG_PATH/$SPEERAL_CFG_FILE" "$SPEERAL_CFG_PATH/$SPEERAL_CFG_FILE" "$SPEERAL_CFG_PATH/$SPEERAL_CFG_FILE" "$SPEERAL_CFG_PATH/$SPEERAL_CFG_FILE")

AUTHOR="Bender"