Last POSIX fix of the day. I think I'll never make that mistake again.
[Rockbox.git] / tools / genvoice.sh
blob5b667ea3ba41da95cf47fd2409f398650736705d
1 #!/bin/sh
2 # __________ __ ___.
3 # Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 # \/ \/ \/ \/ \/
8 # $Id$
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
20 # line.
21 source `dirname $0`'/voicecommon.sh'
23 ####################
24 # General settings #
25 ####################
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
31 TTS_ENGINE=festival
32 # which encoder to use, available: lame, speex, vorbis (only lame will produce
33 # functional voice clips at this point)
34 ENCODER=lame
35 # Where to save temporary files
36 TEMPDIR=/tmp
38 ###################
39 # End of settings #
40 ###################
42 createvoicefile() {
43 $VOICEFONT "$LANG_FILE" "$TEMPDIR/" "./$RLANG.voice"
46 deletefiles() {
47 # XXX: might be unsafe depending on the value of TEMPDIR
48 rm -f "${TEMPDIR}"/LANG_*
49 rm -f "${TEMPDIR}"/VOICE_*
52 generateclips() {
53 ROCKBOX_DIR="$1"
54 RLANG="$2"
55 TARGET="$3"
56 GENLANG="$ROCKBOX_DIR"/tools/genlang
57 ENGLISH="$ROCKBOX_DIR"/apps/lang/english.lang
58 LANG_FILE="$ROCKBOX_DIR"/apps/lang/$RLANG.lang
60 $GENLANG -e=$ENGLISH -o -t=$TARGET $LANG_FILE |(
61 i=0
62 while read line; do
63 case `expr $i % 3` in
65 # String ID no.
66 NUMBER=`echo $line |cut -b 2-`
69 # String ID
70 ID=`echo $line |cut -b 5-`
73 # String
74 STRING=`echo $line |cut -b 8-`
76 # Now generate the file
77 voice "$STRING" "$TEMPDIR/$ID".wav
78 encode "$TEMPDIR/$ID".wav "$TEMPDIR/$ID".mp3
80 esac
81 i=`expr $i + 1`
82 done
86 if [ -z "$3" ]; then
87 echo "Usage: $0 rockboxdirectory language target [settingsfile]";
88 exit 32
89 else
90 if [ ! -d "$1" ] || [ ! -f "$1/tools/genlang" ]; then
91 echo "Error: $1 is not a Rockbox directory"
92 exit 33
94 if [ ! -f "$1/apps/lang/$2.lang" ]; then
95 echo "Error: $2 is not a valid language"
96 exit 34
98 if [ ! -z "$4" ]; then
99 if [ -f "$4" ]; then
100 # Read settings from file
101 source "$4"
102 else
103 echo "Error: $4 does not exist"
104 exit 36
107 # XXX: check for valid $TARGET?
110 VOICEFONT=`dirname $0`/voicefont
111 if [ ! -x $VOICEFONT ]; then
112 echo "Error: $VOICEFONT does not exist or is not executable"
113 exit 35
116 init_tts
117 init_encoder
118 generateclips "$1" "$2" "$3"
119 stop_tts
120 createvoicefile
121 #deletefiles