Fix typos.
Browse files
README.md
CHANGED
@@ -140,10 +140,10 @@ You can also download a complete Youtube playlist:
|
|
140 |
>>> from pytube import Playlist
|
141 |
>>> pl = Playlist("https://www.youtube.com/watch?v=Edpy1szoG80&list=PL153hDY-y1E00uQtCVCVC8xJ25TYX8yPU")
|
142 |
>>> pl.download_all()
|
143 |
-
>>> #
|
144 |
-
>>> pl.download_all(
|
145 |
```
|
146 |
-
This will download the highest progressive stream available (generally 720p) from the given playlist. Later more
|
147 |
to choose video resolution.
|
148 |
|
149 |
Pytube allows you to filter on every property available (see the documentation for the complete list), let's take a look at some of the most useful ones.
|
|
|
140 |
>>> from pytube import Playlist
|
141 |
>>> pl = Playlist("https://www.youtube.com/watch?v=Edpy1szoG80&list=PL153hDY-y1E00uQtCVCVC8xJ25TYX8yPU")
|
142 |
>>> pl.download_all()
|
143 |
+
>>> # or if you want to download in a specific directory
|
144 |
+
>>> pl.download_all('/path/to/directory/')
|
145 |
```
|
146 |
+
This will download the highest progressive stream available (generally 720p) from the given playlist. Later more options would be given for user's flexibility
|
147 |
to choose video resolution.
|
148 |
|
149 |
Pytube allows you to filter on every property available (see the documentation for the complete list), let's take a look at some of the most useful ones.
|