Difference between revisions of "Festival TTS"

From Robert-Depot
Jump to: navigation, search
(Training a Voice Model)
Line 12: Line 12:
 
*exercises and hints - http://festvox.org/festtut-2.0/exercises/
 
*exercises and hints - http://festvox.org/festtut-2.0/exercises/
  
=Training a Voice Model=
+
=Training Voice Models=
 
*howto http://festvox.org/festvox/c3170.html#AEN3172
 
*howto http://festvox.org/festvox/c3170.html#AEN3172
 
*training text input - http://www.festvox.org/cmu_arctic/cmuarctic.data
 
*training text input - http://www.festvox.org/cmu_arctic/cmuarctic.data
Line 32: Line 32:
  
 
==Using a Unit Selection Cluster Voice Synth==
 
==Using a Unit Selection Cluster Voice Synth==
*from uw_us_rdt directory: <pre>festival festvox/uw_us_rdt_clunits.scm
+
#from uw_us_rdt directory: <pre>festival festvox/uw_us_rdt_clunits.scm</pre>
</pre>
+
#in Scheme:<pre>(voice_uw_us_rdt_clunits) </pre>
*in Scheme:<pre>(voice_uw_us_rdt_clunits) </pre>
+
#<pre>(SayText "this is a little test.")</pre>
*<pre>(SayText "this is a little test.")</pre>
+
 
 +
==Building a CLUSTERGEN Statistical Parametric Synthesizer==
 +
adapted from http://festvox.org/festvox/c3170.html#AEN3172
 +
#<pre>mkdir uw_us_rdt_arctic
 +
uw_us_rdt_arctic
 +
$FESTVOXDIR/src/clustergen/setup_cg uw us rdt_arctic</pre>
 +
#<pre>

Revision as of 12:25, 9 October 2012

<<< back to Wiki Home

Getting Started

Learning

Training Voice Models

Building a Unit Selection Cluster Voice

(from here http://festvox.org/festvox/x3082.html)

  1. mkdir uw_uw_rdt
cd uw_uw_rdt
  1. uniphone setup:
     $FESTVOXDIR/src/unitsel/setup_clunits uw us rdt uniphone
  2. generate prompts and prompt files:
    festival -b festvox/build_clunits.scm '(build_prompts_waves "etc/uniphone.data")'
  3. record sound, using audacity. save as 16k, 16bit mono.
  4. make labels:
    ./bin/make_labs prompt-wav/*.wav
  5. build utterance structure:
    festival -b festvox/build_clunits.scm '(build_utts "etc/uniphone.data")'
  6. do pitch marking:
    ./bin/make_pm_wave etc/uniphone.data
  7. find Mel Frequency Cepstral Coefficients:
    ./bin/make_mcep etc/uniphone.data
  8. build cluster unit selection synth:
    festival -b festvox/build_clunits.scm '(build_clunits "etc/uniphone.data")'

Using a Unit Selection Cluster Voice Synth

  1. from uw_us_rdt directory:
    festival festvox/uw_us_rdt_clunits.scm
  2. in Scheme:
    (voice_uw_us_rdt_clunits) 
  3. (SayText "this is a little test.")

Building a CLUSTERGEN Statistical Parametric Synthesizer

adapted from http://festvox.org/festvox/c3170.html#AEN3172

  1. mkdir uw_us_rdt_arctic

uw_us_rdt_arctic

$FESTVOXDIR/src/clustergen/setup_cg uw us rdt_arctic