cleaned up readme
Browse files- README.rst +3 -3
README.rst
CHANGED
@@ -140,7 +140,7 @@ Library usage
|
|
140 |
pprint(yt.filter(resolution='480p'))
|
141 |
|
142 |
# [<Video: H.264 (.flv) - 480p>,
|
143 |
-
#
|
144 |
|
145 |
# To select a video by a specific resolution and filetype you can use the get
|
146 |
# method.
|
@@ -162,7 +162,7 @@ Library usage
|
|
162 |
# <Video: VP8 (.webm) - 360p>,
|
163 |
# <Video: VP8 (.webm) - 480p>]
|
164 |
|
165 |
-
#
|
166 |
# on mp4...
|
167 |
|
168 |
video = yt.get('mp4')
|
@@ -174,6 +174,6 @@ Library usage
|
|
174 |
# Okay, let's download it!
|
175 |
video.download()
|
176 |
|
177 |
-
#
|
178 |
# argument to the download method.
|
179 |
video.download('/tmp/')
|
|
|
140 |
pprint(yt.filter(resolution='480p'))
|
141 |
|
142 |
# [<Video: H.264 (.flv) - 480p>,
|
143 |
+
# <Video: VP8 (.webm) - 480p>]
|
144 |
|
145 |
# To select a video by a specific resolution and filetype you can use the get
|
146 |
# method.
|
|
|
162 |
# <Video: VP8 (.webm) - 360p>,
|
163 |
# <Video: VP8 (.webm) - 480p>]
|
164 |
|
165 |
+
# Since we have two H.264 (.mp4) available to us... now if we try to call get()
|
166 |
# on mp4...
|
167 |
|
168 |
video = yt.get('mp4')
|
|
|
174 |
# Okay, let's download it!
|
175 |
video.download()
|
176 |
|
177 |
+
# If you wanted to choose the output directory, simply pass it as an
|
178 |
# argument to the download method.
|
179 |
video.download('/tmp/')
|