jtmr05
commited on
Update cli.py (#1462)
Browse filesfixed missing space in --ffmpeg and --audio help sections
- pytube/cli.py +3 -3
pytube/cli.py
CHANGED
@@ -161,7 +161,7 @@ def _parse_args(
|
|
161 |
const="mp4",
|
162 |
nargs="?",
|
163 |
help=(
|
164 |
-
"Download the audio for a given URL at the highest bitrate available"
|
165 |
"Defaults to mp4 format if none is specified"
|
166 |
),
|
167 |
)
|
@@ -171,8 +171,8 @@ def _parse_args(
|
|
171 |
const="best",
|
172 |
nargs="?",
|
173 |
help=(
|
174 |
-
"Downloads the audio and video stream for resolution provided"
|
175 |
-
"If no resolution is provided, downloads the best resolution"
|
176 |
"Runs the command line program ffmpeg to combine the audio and video"
|
177 |
),
|
178 |
)
|
|
|
161 |
const="mp4",
|
162 |
nargs="?",
|
163 |
help=(
|
164 |
+
"Download the audio for a given URL at the highest bitrate available. "
|
165 |
"Defaults to mp4 format if none is specified"
|
166 |
),
|
167 |
)
|
|
|
171 |
const="best",
|
172 |
nargs="?",
|
173 |
help=(
|
174 |
+
"Downloads the audio and video stream for resolution provided. "
|
175 |
+
"If no resolution is provided, downloads the best resolution. "
|
176 |
"Runs the command line program ffmpeg to combine the audio and video"
|
177 |
),
|
178 |
)
|