Java FreeTTS缺少语音

时间:2015-01-06 22:22:42

标签: java maven freetts

我写了一个小程序,它应该简单地用Java进行文本到语言。

My Class看起来像这样:

import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;

public class TalkResource {

private static final String VOICENAME_kevin = "kevin16";
private final String text; // string to speech

public TalkResource(String text) {
    this.text = text;
}

public void speak() {
    Voice voice;
    VoiceManager voiceManager = VoiceManager.getInstance();
    voice = voiceManager.getVoice(VOICENAME_kevin);
    voice.allocate();

    String newText = "example";
    voice.speak(newText);
    }
}

我非常确定语法(和内容)是正确的,但我的voice始终是null

我认为" kevin16"没有找到或包含在项目中,但我无法弄清楚如何为我的项目添加任何语音。要获取依赖项,我使用maven

<dependency>
    <groupId>net.sf.sociaal</groupId>
    <artifactId>freetts</artifactId>
    <version>1.2.2</version>
</dependency>

除了声音之外,一切都在那里。从我读到的,我认为&#34; kevin16&#34;应该包含在FreeTTS中。任何想法如何继续?我怎样才能添加声音?我也找到了关于MBROLA的内容,但这让我更加不清楚:/

感谢您的帮助。

4 个答案:

答案 0 :(得分:3)

我有完全相同的问题。当我试图拨打voiceManager.getVoices()时,我得到了空列表。问题是,freetts.voices未设置系统属性。所以,添加以下行修复了我的问题:

System.setProperty("freetts.voices", "com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory");

现在,我可以使用 kevin kevin16 语音。

希望这有帮助。

答案 1 :(得分:0)

您是否曾在任何地方拨打 发言方法?

尝试这样的事情:

import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;

public class TalkResource {

    private static final String VOICENAME_kevin = "kevin16";

    public TalkResource(String sayText) {
        Voice voice;
        VoiceManager voiceManager = VoiceManager.getInstance();
        voice = voiceManager.getVoice(VOICENAME_kevin);
        voice.allocate();

        voice.speak(sayText);
    }

    public static void main(String []args) {
        new TalkResource("hello");
    }
}

我要去试一下,说你比我更熟悉Maven服务器,但是我也经常玩FreeTTS和MBROLA的声音,而且我从来没有过仅在我的项目中引用freetts库的问题。

如果您想查看MBROLA,我确实有一个关于如何设置的正确线索here

答案 2 :(得分:0)

这对我也没有用。我使用了不同的存储库(您必须更改您的POM文件)。 我使用了以下依赖项:

<dependencies>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>freetts</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>en_us</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>cmu_us_kal</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>cmu_time_awb</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>cmulex</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>cmutimelex</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>org.mobicents.external.freetts</groupId>
        <artifactId>cmudict04</artifactId>
        <version>1.2.2</version>
    </dependency>

为此,我使用了以下存储库:

<repository>
    <id>sonatype-oss-public</id>
    <url>https://oss.sonatype.org/content/groups/public/</url>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

答案 3 :(得分:0)

只需在主

中添加第一行即可

在这里输入代码

public static void main(String[] args) throws Exception{
    // TODO code application logic here
 System.setProperty("freetts.voices", 
 "com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory");
  String message = "Hello world! This is a test program";
  Mehrunisa mehrunisa = new Mehrunisa(message);
  mehrunisa.speak();
 }