diff trunk/scripts/gen_features.sh @ 308:91521e05b08f

-More fixes
author tomwalters
date Fri, 26 Feb 2010 07:16:34 +0000
parents a9e7737cad19
children 66d5c4d2d90c
line wrap: on
line diff
--- a/trunk/scripts/gen_features.sh	Fri Feb 26 07:12:14 2010 +0000
+++ b/trunk/scripts/gen_features.sh	Fri Feb 26 07:16:34 2010 +0000
@@ -6,10 +6,10 @@
 # Author: Thomas Walters <tom@acousticscale.org>
 
 # Source directory for all the sound files
-SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTK-AIM/Sounds/"
+SOUND_SOURCE="/media/sounds-database/cnbh-sounds/"
 
 # Location of the AIMCopy binary if not in the path
-AIMCOPY_PREFIX="../build/darwin-release/"
+AIMCOPY_PREFIX="../build/posix-release/"
 
 MACHINE_CORES=2
 
@@ -43,9 +43,9 @@
 echo "Generating syllable list..."
 
 for v in $VOWELS; do
-  #echo $v$v >> $WORK/$SYLLIST.tmp
+  echo $v$v >> $WORK/$SYLLIST.tmp
   for c in $CONSONANTS; do
-    #echo $v$c >> $WORK/$SYLLIST.tmp
+    echo $v$c >> $WORK/$SYLLIST.tmp
     echo $c$v >> $WORK/$SYLLIST.tmp
   done
 done