update README
Browse files
README.md
CHANGED
@@ -44,6 +44,7 @@ $ pip install pytube3 --upgrade
|
|
44 |
... .order_by('resolution')[-1]
|
45 |
... .download()
|
46 |
```
|
|
|
47 |
|
48 |
## Features
|
49 |
* Support for Both Progressive & DASH Streams
|
@@ -242,6 +243,7 @@ The complete set of flags are:
|
|
242 |
```
|
243 |
usage: pytube3 [-h] [--version] [--itag ITAG] [-r RESOLUTION] [-l] [-v]
|
244 |
[--build-playback-report] [-c [CAPTION_CODE]] [-t TARGET]
|
|
|
245 |
[url]
|
246 |
|
247 |
Command line application to download youtube videos.
|
@@ -257,7 +259,7 @@ optional arguments:
|
|
257 |
The resolution for the desired stream
|
258 |
-l, --list The list option causes pytube cli to return a list of
|
259 |
streams available to download
|
260 |
-
-v, --verbose Verbosity level
|
261 |
--build-playback-report
|
262 |
Save the html and js to disk
|
263 |
-c [CAPTION_CODE], --caption-code [CAPTION_CODE]
|
@@ -266,6 +268,15 @@ optional arguments:
|
|
266 |
-t TARGET, --target TARGET
|
267 |
The output directory for the downloaded stream.
|
268 |
Default is current working directory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
```
|
270 |
|
271 |
|
@@ -292,7 +303,7 @@ This project is linted with [pyflakes](https://github.com/PyCQA/pyflakes), forma
|
|
292 |
Treat other people with helpfulness, gratitude, and consideration! See the [Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/).
|
293 |
|
294 |
## GUIs and other libraries
|
295 |
-
* [
|
296 |
-
* [YouTubeDownload](https://github.com/YouTubeDownload/YouTubeDownload) - GUI frontend for pytube3
|
297 |
* [Pytube-GUI](https://github.com/GAO23/Pytube-GUI) - Simple GUI frontend for pytube3
|
298 |
* [StackOverflow questions](https://stackoverflow.com/questions/tagged/pytube)
|
|
|
|
44 |
... .order_by('resolution')[-1]
|
45 |
... .download()
|
46 |
```
|
47 |
+
A GUI frontend for pytube3 is available at [YouTubeDownload](https://github.com/YouTubeDownload/YouTubeDownload)
|
48 |
|
49 |
## Features
|
50 |
* Support for Both Progressive & DASH Streams
|
|
|
243 |
```
|
244 |
usage: pytube3 [-h] [--version] [--itag ITAG] [-r RESOLUTION] [-l] [-v]
|
245 |
[--build-playback-report] [-c [CAPTION_CODE]] [-t TARGET]
|
246 |
+
[-a [AUDIO]] [-f [FFMPEG]]
|
247 |
[url]
|
248 |
|
249 |
Command line application to download youtube videos.
|
|
|
259 |
The resolution for the desired stream
|
260 |
-l, --list The list option causes pytube cli to return a list of
|
261 |
streams available to download
|
262 |
+
-v, --verbose Verbosity level, use up to 4 to increase logging -vvvv
|
263 |
--build-playback-report
|
264 |
Save the html and js to disk
|
265 |
-c [CAPTION_CODE], --caption-code [CAPTION_CODE]
|
|
|
268 |
-t TARGET, --target TARGET
|
269 |
The output directory for the downloaded stream.
|
270 |
Default is current working directory
|
271 |
+
-a [AUDIO], --audio [AUDIO]
|
272 |
+
Download the audio for a given URL at the highest
|
273 |
+
bitrate availableDefaults to mp4 format if none is
|
274 |
+
specified
|
275 |
+
-f [FFMPEG], --ffmpeg [FFMPEG]
|
276 |
+
Downloads the audio and video stream for resolution
|
277 |
+
providedIf no resolution is provided, downloads the
|
278 |
+
best resolutionRuns the command line program ffmpeg to
|
279 |
+
combine the audio and video
|
280 |
```
|
281 |
|
282 |
|
|
|
303 |
Treat other people with helpfulness, gratitude, and consideration! See the [Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/).
|
304 |
|
305 |
## GUIs and other libraries
|
306 |
+
* [YouTubeDownload](https://github.com/YouTubeDownload/YouTubeDownload) - Featured GUI frontend for pytube3
|
|
|
307 |
* [Pytube-GUI](https://github.com/GAO23/Pytube-GUI) - Simple GUI frontend for pytube3
|
308 |
* [StackOverflow questions](https://stackoverflow.com/questions/tagged/pytube)
|
309 |
+
* [PySlackers](https://pyslackers.com/web) - Python Slack group
|