*
* @return an array of new Voice instances
*/
public Voice[] getVoices() {
CMULexicon lexicon = new CMULexicon("cmulex");
Voice kevin = new CMUDiphoneVoice("kevin", Gender.MALE,
Age.YOUNGER_ADULT, "default 8-bit diphone voice",
Locale.US, "general", "cmu", lexicon,
this.getClass().getResource("cmu_us_kal.bin"));
Voice kevin16 = new CMUDiphoneVoice("kevin16", Gender.MALE,
Age.YOUNGER_ADULT, "default 16-bit diphone voice",
Locale.US, "general", "cmu", lexicon,
this.getClass().getResource("cmu_us_kal16.bin"));
Voice[] voices = {kevin, kevin16};