Giter VIP home page Giter VIP logo

Comments (1)

eheikes avatar eheikes commented on September 26, 2024

Oh yes, I ran into this too but forgot to mention it in the docs. The problem is in how the CLI parser interprets arguments that begin with a hyphen. The workaround is to use the alternate "equal sign" format for those arguments: tts test.txt test.mp3 --service gcp --project-file xxxx.json --language en-uS --type ssml --voice en-US-Wavenet-B --pitch=-2.0 (note the = between the pitch name and value).

I might be able to tweak the code so that the equal-sign format is not necessary. At the very least I'll add a note to the docs to point that out.

More technical explanation:
The parser module follows POSIX conventions, so anything that begins with a hyphen is considered an option. So something like --pitch -2 is interpreted as 2 different options, pitch=true and 2=true (nevermind that seems nonsensical), rather than pitch=2.

from tts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.