Skip to content

Commit

Permalink
Merge pull request #4 from hugobloem:update-defaults
Browse files Browse the repository at this point in the history
Update-defaults
  • Loading branch information
hugobloem authored Nov 10, 2023
2 parents 5728491 + ce04fa2 commit a8a9193
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions wyoming-microsoft-tts/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ async def main() -> None:
default="en-GB-SoniaNeural",
help="Default Microsoft voice to use (e.g., en-GB-SoniaNeural)",
)
parser.add_argument("--download-dir", default="./", type=str)
parser.add_argument("--uri", default="stdio://", help="unix:// or tcp://")
parser.add_argument(
"--download-dir",
default="/tmp/",
type=str,
help="Directory to download voices.json into (default: /tmp/)",
)
parser.add_argument(
"--uri", default="tcp://0.0.0.0:10200", help="unix:// or tcp://"
)
#
parser.add_argument(
"--speaker", type=str, help="Name or id of speaker for default voice"
Expand Down

0 comments on commit a8a9193

Please sign in to comment.