3 # Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 # Copyright 2006 Jonas Häggqvist, some parts Copyright 2004 Daniel Gudlat
12 # All files in this archive are subject to the GNU General Public License.
13 # See the file COPYING in the source tree root for full license agreement.
15 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 # KIND, either express or implied.
18 # Include voicecommon.sh from the same dir as this script
19 # Any settings from voicecommon can be overridden if added below the following
21 source `dirname $0`'/voicecommon.sh'
27 # These settings can be overridden by passing a file with definitions as
28 # the fourth parameter to this script
30 # which TTS engine to use. Available: festival, flite, espeak
32 # which encoder to use, available: lame, speex, vorbis (only lame will produce
33 # functional voice clips at this point)
35 # Where to save temporary files
37 # List of IDs to send to voicefont
38 VOICEFONTIDS
=voicefontids
46 $GENLANG -e=$ENGLISH -o -t=$TARGET $LANG_FILE > $VOICEFONTIDS
47 $VOICEFONT "$VOICEFONTIDS" "$TARGET_ID" "$TEMPDIR/" "./$RLANG.voice"
51 # XXX: might be unsafe depending on the value of TEMPDIR
52 rm -f "${TEMPDIR}"/LANG_
*
53 rm -f "${TEMPDIR}"/VOICE_
*
60 GENLANG
="$ROCKBOX_DIR"/tools
/genlang
61 ENGLISH
="$ROCKBOX_DIR"/apps
/lang
/english.lang
62 LANG_FILE
="$ROCKBOX_DIR"/apps
/lang
/$RLANG.lang
64 $GENLANG -e=$ENGLISH -o -t=$TARGET $LANG_FILE |
(
70 NUMBER
=`echo $line |cut -b 2-`
74 ID
=`echo $line |cut -b 5-`
78 STRING
=`echo $line |cut -b 8-`
80 if [ -n "$POOL" ]; then
81 # we have a common pool of snippets, check that first
82 # for available mp3 sounds, and if it is available copy
84 if [ -f "$POOL/$STRING.mp3" ]; then
85 echo "Re-using $ID from pool"
86 if [ ! -e "$TEMPDIR/$ID".mp3
]; then
87 # only do this if not present
88 ln -s "$POOL/$STRING.mp3" "$TEMPDIR/$ID".mp3
93 # only make an mp3 if not already present
94 if [ ! -e "$TEMPDIR/$ID".mp3
]; then
95 # Now generate the file
96 voice
"$STRING" "$TEMPDIR/$ID".wav
97 if [ -n "$POOL" ]; then
98 # create it in the pool, symlink it back
99 encode
"$TEMPDIR/$ID".wav
"$POOL/$STRING".mp3
100 ln -s "$POOL/$STRING.mp3" "$TEMPDIR/$ID".mp3
102 encode
"$TEMPDIR/$ID".wav
"$TEMPDIR/$ID".mp3
113 echo "Usage: $0 rockboxdirectory language target targetid [settingsfile]";
116 if [ ! -d "$1" ] ||
[ ! -f "$1/tools/genlang" ]; then
117 echo "Error: $1 is not a Rockbox directory"
120 if [ ! -f "$1/apps/lang/$2.lang" ]; then
121 echo "Error: $2 is not a valid language"
124 if [ ! -z "$5" ]; then
126 # Read settings from file
129 echo "Error: $5 does not exist"
133 # XXX: check for valid $TARGET?
136 VOICEFONT
=`dirname $0`/voicefont
137 if [ ! -x $VOICEFONT ]; then
138 echo "Error: $VOICEFONT does not exist or is not executable"
144 generateclips
"$1" "$2" "$3"