1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

parser: updated help descriptions of -S and -M if used together

This commit is contained in:
iwconfig 2021-11-25 11:05:26 +01:00 committed by Johan Andersson
parent 487da6b643
commit f3d8371eb5

View File

@ -211,7 +211,7 @@ def gen_parser(version="unknown"):
action="store_true",
dest="subtitle",
default=False,
help="download subtitle from the site if available",
help="download subtitle from the site if available. both merged and separately stored if used with -M",
)
subtitle.add_argument(
"-M",
@ -219,7 +219,7 @@ def gen_parser(version="unknown"):
action="store_true",
dest="merge_subtitle",
default=False,
help="merge subtitle with video/audio file with corresponding ISO639-3 language code." "this invokes --remux automatically.",
help="merge subtitle with video/audio file with corresponding ISO639-3 language code. also saved separately if used with -S",
)
subtitle.add_argument(
"--force-subtitle",