最近我找到了一种用 Java 制作文本到语音的方法(MaryTTS:http ://mary.dfki.de/index.html )
我发现这段代码可以在 Java 中使用它:
public class MaryTTSRemote
{
private MaryInterface marytts;
private AudioPlayer ap;
public MaryTTSRemote(String voiceName)
{
try
{
marytts = new LocalMaryInterface();
marytts.setVoice(voiceName);
ap = new AudioPlayer();
}
catch (MaryConfigurationException ex)
{
ex.printStackTrace();
}
}
public void say(String input)
{
try
{
AudioInputStream audio = marytts.generateAudio(input);
ap.setAudio(audio);
ap.start();
}
catch (SynthesisException ex)
{
System.err.println("Error saying phrase.");
}
}
}
但是当我尝试运行这个类时,我不知道基本声音有什么名字。有人知道我必须给这个类什么字符串才能让它工作吗?