Changes between Version 15 and Version 16 of VoiceImportToolsTutorial
- Timestamp:
- 01/04/08 15:20:42 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VoiceImportToolsTutorial
v15 v16 33 33 34 34 Download Link for praat : http://www.fon.hum.uva.nl/praat 35 36 Installing Snack : Require tcl and snack. Installation instructions available at http://www.speech.kth.se/snack/ 35 37 36 38 - Edinburgh Speech Tools Library – For MFCCs and Wagon (CART) … … 83 85 a. Wave files 84 86 b. Corresponding Transcription (in MARY or Festival Format) 87 88 MARY Format : Each transcription represented by a single file. All these files placed in a single directory. By default, all these files placed in 'text' directory of voice-building directory. 89 90 Festival Format : A single file contains all transcriptions. For examples see below example. 91 92 {{{ 93 94 ( arctic_a0001 "AUTHOR OF THE DANGER TRAIL, PHILIP STEELS, ETC" ) 95 ( arctic_a0002 "Not at this particular case, Tom, apologized Whittemore." ) 96 ( arctic_a0003 "For the twentieth time that evening the two men shook hands." ) 97 ( arctic_a0004 "Lord, but I'm glad to see you again, Phil." ) 98 ( arctic_a0005 "Will we ever forget it." ) 99 100 }}} 85 101 86 102 2. Create a new Voice Building Directory … … 94 110 95 111 export MARY_BASE="/path/to/mary" 96 java -Xmx1024m -classpath $MARY_BASE/java:$MARY_BASE/java/mary-common.jar: \ 97 $MARY_BASE/java/signalproc.jar:$MARY_BASE/java/freetts.jar:$MARY_BASE/java/jsresources.jar: \ 98 $MARY_BASE/java/log4j-1.2.8.jar -Djava.endorsed.dirs=$MARYBASE/lib/endorsed \ 99 de.dfki.lt.mary.unitselection.voiceimport.DatabaseImportMain 112 java -jar -Xmx1024m $MARY_BASE/java/voiceimport.jar 100 113 101 114 }}}