festvox / festival

Festival Speech Synthesis System
Other
386 stars 58 forks source link

How get I use part of festival like TN/G2P? #19

Closed Jackiexiao closed 5 years ago

Jackiexiao commented 5 years ago

There is an example of how to use part of festival as POS tagger link, but how can I use part of festival as TN/G2P module?

festvox commented 5 years ago

The script text2utts (which is in the festvox repository which gets made as a shell script in festvox/src/promptselect/text2utts

For text normalization .../text2utts -all -level Word xxx.txt

For g2p

.../text2utts -all -level Segment words.txt

You might also want to look at flite, as it has options to do this too.

Jackiexiao commented 5 years ago

thx!