From e05413411b417fd8c9f3095d33b54037c19ee2df Mon Sep 17 00:00:00 2001 From: rany Date: Tue, 11 May 2021 02:27:05 +0300 Subject: [PATCH] Fix help page for more info --- edge-tts.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/edge-tts.py b/edge-tts.py index 0a41d25..0526080 100755 --- a/edge-tts.py +++ b/edge-tts.py @@ -70,11 +70,11 @@ if __name__ == "__main__": parser.add_argument('-v', '--voice', help='voice for TTS. Default: en-US-AriaNeural', default='en-US-AriaNeural') parser.add_argument('-c', '--codec', help="codec format. Default: audio-24khz-48kbitrate-mono-mp3. webm-24khz-16bit-mono-opus doesn't work", default='audio-24khz-48kbitrate-mono-mp3') group.add_argument('-l', '--list-voices', help="lists available voices. Edge's list is incomplete so check https://bit.ly/2SFq1d3", action='store_true') - parser.add_argument('-p', '--pitch', help="set TTS pitch. Default +0Hz", default="+0Hz") - parser.add_argument('-r', '--rate', help="set TTS rate. Default +0%%", default="+0%") - parser.add_argument('-V', '--volume', help="set TTS volume. Default +0%%", default="+0%") - parser.add_argument('-s', '--enable-sentence-boundary', help="enable sentence boundary", action='store_true') - parser.add_argument('-w', '--disable-word-boundary', help="disable word boundary", action='store_false') + parser.add_argument('-p', '--pitch', help="set TTS pitch. Default +0Hz, For more info check https://bit.ly/3eAE5Nx", default="+0Hz") + parser.add_argument('-r', '--rate', help="set TTS rate. Default +0%%. For more info check https://bit.ly/3eAE5Nx", default="+0%") + parser.add_argument('-V', '--volume', help="set TTS volume. Default +0%%. For more info check https://bit.ly/3eAE5Nx", default="+0%") + parser.add_argument('-s', '--enable-sentence-boundary', help="enable sentence boundary (not implemented but set)", action='store_true') + parser.add_argument('-w', '--disable-word-boundary', help="disable word boundary (not implemented but set)", action='store_false') args = parser.parse_args() if args.text is not None or args.file is not None: