Difference between revisions of "Festival TTS"
From Robert-Depot
(→Using new Voices) |
(→Using new Voices) |
||
Line 66: | Line 66: | ||
=Using new Voices= | =Using new Voices= | ||
+ | *copy your newly trained voice to <code>festival/lib/voices/english/<code> | ||
+ | *your new voice directory (ex: <code>uw_us_rdt_clunits</code>) needs to match the voice file (ex: <code>uw_us_rdt_clunits/festvox/uw_us_rdt_clunits.scm</code>) | ||
*add the following to <code>festival/etc/siteinit.scm</code>: | *add the following to <code>festival/etc/siteinit.scm</code>: | ||
<pre> | <pre> | ||
Line 72: | Line 74: | ||
(set! voice_default 'voice_uw_us_rdt_clunits) | (set! voice_default 'voice_uw_us_rdt_clunits) | ||
</pre> | </pre> | ||
− | + | *now you can just run <code>festival_server</code> and it will load your voice by default | |
*http://www.cstr.ed.ac.uk/projects/festival/manual/festival_24.html | *http://www.cstr.ed.ac.uk/projects/festival/manual/festival_24.html | ||
=Improving Quality= | =Improving Quality= | ||
*tuning a voice - http://www.cstr.ed.ac.uk/emasters/summer_school_2005/tutorial3/tutorial.html | *tuning a voice - http://www.cstr.ed.ac.uk/emasters/summer_school_2005/tutorial3/tutorial.html |
Revision as of 08:14, 19 October 2012
Contents
Getting Started
- Festival Speech Synthesis System - http://www.cstr.ed.ac.uk/projects/festival/
- build on os x with do_prompt capabilities - http://linguisticmystic.com/2011/07/15/using-festival-tts-on-os-x/
- this is a class - http://www.speech.cs.cmu.edu/15-492/assignments/tts/index.html
Learning
- Book - http://festvox.org/festvox/book1.html
- short tutorial - http://festvox.org/festtut-2.0/
- exercises and hints - http://festvox.org/festtut-2.0/exercises/
Training Voice Models
- howto http://festvox.org/festvox/c3170.html#AEN3172
- training text input - http://www.festvox.org/cmu_arctic/cmuarctic.data
- useful tips http://festvox.org/index.html, including name for EMU speech database system http://www.shlrc.mq.edu.au/emu/
- Building a CLUSTERGEN Statistical Parametric Synthesizer: http://festvox.org/festvox/c3170.html#AEN3172
Building a Unit Selection Cluster Voice
(from here http://festvox.org/festvox/x3082.html)
mkdir uw_uw_rdt
- uniphone setup:
$FESTVOXDIR/src/unitsel/setup_clunits uw us rdt uniphone
- generate prompts and prompt files:
festival -b festvox/build_clunits.scm '(build_prompts_waves "etc/uniphone.data")'
- record sound, using audacity. save as 16k, 16bit mono.
- make labels:
./bin/make_labs prompt-wav/*.wav
- build utterance structure:
festival -b festvox/build_clunits.scm '(build_utts "etc/uniphone.data")'
- do pitch marking:
./bin/make_pm_wave etc/uniphone.data
- find Mel Frequency Cepstral Coefficients:
./bin/make_mcep etc/uniphone.data
- build cluster unit selection synth:
festival -b festvox/build_clunits.scm '(build_clunits "etc/uniphone.data")'
Using a Unit Selection Cluster Voice Synth
- from uw_us_rdt directory:
festival festvox/uw_us_rdt_clunits.scm
- in Scheme:
(voice_uw_us_rdt_clunits)
(SayText "this is a little test.")
Building a CLUSTERGEN Statistical Parametric Synthesizer
adapted from http://festvox.org/festvox/c3170.html#AEN3172
mkdir uw_us_rdt_arctic
uw_us_rdt_arctic $FESTVOXDIR/src/clustergen/setup_cg uw us rdt_arctic
- copy text into
etc/txt.done.data
. use some of the lines from here http://www.festvox.org/cmu_arctic/cmuarctic.data - copy audio files into
wav/
- use
bin/get_wavs
to copy files to power normalize and convert to proper format.
using meghan voice
=To run the server:
- open terminal:
cd /Users/murmur/Desktop/meghan festival_server -c meghans_special_sauce.scm
- To kill the server:
Control-C
- To run the client:
open a 2nd terminal window: cd /Users/murmur/Desktop/meghan festival_client myfile.txt --ttw --output client_test.wav
- Other stuff (python):
import os os.popen("/Applications/festival_2.1/festival/src/main/festival_client /Users/murmur/Desktop/meghan/myfile.txt --ttw --output /Users/murmur/Desktop/meghan/client_test78.wav")
Using new Voices
- copy your newly trained voice to
festival/lib/voices/english/<code>
- your new voice directory (ex: <code>uw_us_rdt_clunits) needs to match the voice file (ex:
uw_us_rdt_clunits/festvox/uw_us_rdt_clunits.scm
) - add the following to
festival/etc/siteinit.scm
:
(autoload voice_uw_us_rdt_clunits "/Users/rtwomey/code/tts/festival/lib/voices/english/uw_us_rdt_clunits/festvox/uw_us_rdt_clunits" "American English male uw_us_rdt_clunits") (set! voice_default 'voice_uw_us_rdt_clunits)
- now you can just run
festival_server
and it will load your voice by default - http://www.cstr.ed.ac.uk/projects/festival/manual/festival_24.html