We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6413888 commit 08d11c3Copy full SHA for 08d11c3
scripts/tts/talk.py
@@ -51,6 +51,9 @@ def parse_args() -> argparse.Namespace:
51
)
52
parser = add_connection_argparse_parameters(parser)
53
args = parser.parse_args()
54
+ if not args.output.strip():
55
+ print("Empty output file path not allowed")
56
+ return
57
if args.output is not None:
58
args.output = args.output.expanduser()
59
if args.list_devices or args.output_device or args.play_audio:
0 commit comments