feat(cli): add 480 as a possible quality

This commit is contained in:
Benex254
2024-08-15 10:48:39 +03:00
parent 9519472f83
commit bfbd2a57a0

View File

@@ -76,7 +76,7 @@ signal.signal(signal.SIGINT, handle_exit)
@click.option(
"-q",
"--quality",
type=click.Choice(["360", "720", "1080", "unknown"]),
type=click.Choice(["360", "480", "720", "1080", "unknown"]),
help="set the quality of the stream",
)
@click.option(