-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# voice-cmu-awb-time | ||
|
||
A male Scottish English limited-domain unit selection voice for [MaryTTS](http://mary.dfki.de/) built from [recordings provided by CMU](http://festvox.org/cmu_arctic/) | ||
|
||
## Prerequisites | ||
|
||
You will need to have [Java](https://www.java.com/), [Praat](http://praat.org/), [SoX](http://sox.sourceforge.net/), and the [Edinburgh Speech Tools](http://www.cstr.ed.ac.uk/projects/speech_tools/) installed. | ||
On OSX with [Homebrew](http://brew.sh/), do | ||
``` | ||
$ brew cask install java praat | ||
$ brew install sox speech-tools | ||
``` | ||
as needed. | ||
|
||
On Debian-based Linux (including Ubuntu), do | ||
``` | ||
$ sudo apt-get install default-jdk praat sox speech-tools | ||
``` | ||
accordingly. | ||
|
||
### Initializing the build | ||
|
||
Do | ||
``` | ||
$ ./gradlew legacyInit | ||
``` | ||
|
||
### Building the voice | ||
|
||
To assemble, test, and package the voice for another MaryTTS installation, do | ||
``` | ||
$ ./gradlew build | ||
``` | ||
The packaged files will be placed under `build/distributions`. | ||
Copy the zip file and xml descriptor into your MaryTTS installation's `download` directory, then run the `marytts-component-installer` to install the voice. | ||
|
||
### Running the voice | ||
|
||
To build the voice and run it in an ad-hoc MaryTTS server, do | ||
``` | ||
$ ./gradlew run | ||
``` | ||
Then, go to [http://localhost:59125](http://localhost:59125/). |