Questions tagged [marytts]

MARY is an open-source, multilingual Text-to-Speech Synthesis platform written in Java.

MARY is an open-source, multilingual Text-to-Speech Synthesis platform written in Java. It was originally developed as a collaborative project of DFKI's Language Technology lab and the Institute of Phonetics at Saarland University and is now being maintained by DFKI.

https://github.com/marytts/marytts

23 questions
14
votes
3 answers

How to solve TypeError: cannot serialize float Python Elementtree

I got a debugging question. Since I am quite new here, please forgive possible janky walls-of-text. After many hours I finally got elementtree to do what I want, but I cannot output my results, because tree.write("output3.xml") as well as…
sibert
  • 427
  • 2
  • 5
  • 10
5
votes
1 answer

fatal: Could not change back to '/root': Permission denied

I'm trying to install MaryTTS on ubuntu 16.4. but when I hit the line sudo -u mary git clone https://github.com/marytts/marytts.git /local/mary/marytts fatal: Could not change back to '/root': Permission denied link tutorial, and link
Akim Prestatic
  • 124
  • 2
  • 10
3
votes
1 answer

Is there any format for date vocal synthesis ? [MaryTTS]

I'm working on an app which require TTS (Text-To-Speech) and I'm using MaryTTS. I was wondering if it exists any format for the date ? It exists for the time but I can't find anything about the date. For instance : - if I write 08:00 it replies…
MLME
  • 45
  • 5
2
votes
1 answer

Java - Apply Effects to MaryTTS Voice

I am using a set of libraries in Java called(MaryTTS[actually is many more]) to convert text to speech for that purpose the code below is used: public class TextToSpeech { private AudioPlayer tts; private MaryInterface marytts; …
GOXR3PLUS
  • 6,877
  • 9
  • 44
  • 93
2
votes
1 answer

How do I use other voices when using MaryTTS embed?

I want to use MaryTTS embed in my Java application. I have downloaded the jars and put them in my classpath. I can successfully run this test: public static void main(String[] args) throws Exception { MaryInterface marytts = new…
Saturn
  • 17,888
  • 49
  • 145
  • 271
2
votes
1 answer

MaryTTS voice name

Recently I've found a way to make Text To Speech in Java (MaryTTS:http://mary.dfki.de/index.html) I've found this code to use it in Java: public class MaryTTSRemote { private MaryInterface marytts; private AudioPlayer ap; public…
JetStream
  • 809
  • 1
  • 8
  • 28
1
vote
1 answer

Change voice of MaryTTS to French

I started to use MaryTTS in a java project and it's working fine but with an english voice : public static void main(String[] args) throws MaryConfigurationException, InterruptedException, SynthesisException { // init CLI options, args …
Bastien
  • 71
  • 1
  • 13
1
vote
1 answer

Change audio speed when using MaryTTS

I am trying to use marytts to do text to speech. It works but I don't know how to change the speed. I want it can be read fast or slow. Here is my code: public void playEmail(String sender, String subject, String content, Integer voiceType, Float…
Daxi Song
  • 67
  • 1
  • 4
1
vote
0 answers

How to add MaryTTS Voice (Jar File) to my own jar/load from folder in IntelliJ

So I am probably just stupid but I am unable to get MaryTTS (which I just ship with my jar) to load a voice jar file/include it in my own jar and then load it automatically. How can I do this with IntelliJ properly? I have tried extracting the voice…
Jalau
  • 303
  • 1
  • 2
  • 11
1
vote
1 answer

MaryTTS Exception NoClassDefFoundError: com/google/common/bas e/Joiner

I am fetching data from Wikipedia and i give them to MaryTTS which is a text to speech library . So for example i fetch the text from Wikipedia API like this : Wikipedia API Summary Searching for Donald Trump Java code that produces the…
GOXR3PLUS
  • 6,877
  • 9
  • 44
  • 93
1
vote
0 answers

Marytts HMM voice quality changes with text length

I am using MaryTTS as a text to speech engine inside a Grails Application. During app testing I found out that the language quality drastically changes (for the worst) with increasing text length when using a HMM voice. So naturally I tested via the…
D.Ivanov
  • 11
  • 4
1
vote
1 answer

How can I fix Marytts MCEPMaker error on Windows 8

I have spend almost a week to figure it out the problem related to Marrtts MCEPmaker for Windows. I think MCEPmaker requires speech_tools and festival. For this reason, I tried to install the packages in festival 2.1 folder in festvox website (which…
Jak
  • 11
  • 1
1
vote
1 answer

Is it possible to use MARY TTS engine on android application? Has anyone attempted this? Where would be a good place to start?

I'm interested in implementing the MARY TTS engine on Android, specifically to use some of the advanced features available to the voices (such as inflection, duration, pitch, etc). Ideally I would create a self-contained Android application with a…
0
votes
0 answers

The Mary TTS library is Unavailable with JDK 11. How Do I Make It Compatible?

How Do I Make the Mary TTS 5.2 Library Compatible with JDK 11? As I mentioned in the title, I need to voice a text received with the help of a CDI Bean in Turkish. This is built for a sound button that will work when the button is clicked on a web…
0
votes
1 answer

Add a new voice to marytts from a jar with gradle

Here is my code : /* * This Java source file was generated by the Gradle 'init' task. */ package speech; import java.util.* ; // import marytts . modules . synthesis . voice . * ; import marytts.MaryInterface; import…
Bussiere
  • 500
  • 13
  • 60
  • 119
1
2