-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gradle: is the mary depenency missing? #12
Comments
Hello, it works for me without using these dependencies. Have you modified anything from the |
No I didn't, but I only checked out this repository and didn't have marytts installed on my system. |
hum weird. I am going to check with a docker image a little bit later and keep you informed |
I tried with the following docker build and it works on my side FROM ubuntu
###################################################################################
### Installation of the system source
###################################################################################
# Prepare the system
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y build-essential locales
RUN echo "en_IE.UTF-8 UTF-8" > /etc/locale.gen
RUN echo "en_GB.UTF-8 UTF-8" >> /etc/locale.gen
RUN locale-gen
ENV TZ=Europe/Dublin
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
###################################################################################
### Environment packages
###################################################################################
# Install necessary tools
RUN apt-get install -y git wget default-jdk
###################################################################################
### Testing part
###################################################################################
RUN git clone https://github.com/marytts/marytts-txt2wav.git /marytts-txt2wav
RUN cd /marytts-txt2wav && git checkout gradle && ./gradlew shadowJar && java -jar build/libs/txt2wav-1.0-SNAPSHOT.jar -o "test.wav" "ok let's go"
|
Ok, must be something going on on my system then. Thank you for taking the time to look into this. |
Figured it out, seems like at least some other voices cannot be used without //compile group: 'de.dfki.mary', name: 'voice-cmu-slt-hsmm', version: '5.2'
compile group: 'de.dfki.mary', name: 'voice-bits3-hsmm', version: '5.2'
compile group: 'de.dfki.mary', name: 'voice-bits1-hsmm', version: '5.2' |
Thanks for the report. I will try that. It is possible that the voices do not include the transitive dependencies but I would find that weird. I keep you updated |
Yes it is confirmed. It is likely to be corrected only when we will update the voices with the new version. |
I was only able to get the gradle branch to work after adding the following to
gradle.build
Did I do something wrong on my part or is this missing from the example?
The text was updated successfully, but these errors were encountered: