]> Raphaël G. Git Repositories - youtubedl/blob - README.txt
Imported Upstream version 2013.12.23
[youtubedl] / README.txt
1 NAME
2 ====
3
4 youtube-dl - download videos from youtube.com or other video platforms
5
6 SYNOPSIS
7 ========
8
9 youtube-dl OPTIONS URL [URL...]
10
11 DESCRIPTION
12 ===========
13
14 youtube-dl is a small command-line program to download videos from
15 YouTube.com and a few more sites. It requires the Python interpreter,
16 version 2.6, 2.7, or 3.3+, and it is not platform specific. It should
17 work on your Unix box, on Windows or on Mac OS X. It is released to the
18 public domain, which means you can modify it, redistribute it or use it
19 however you like.
20
21 OPTIONS
22 =======
23
24 -h, --help print this help text and exit
25 --version print program version and exit
26 -U, --update update this program to latest version. Make sure
27 that you have sufficient permissions (run with
28 sudo if needed)
29 -i, --ignore-errors continue on download errors, for example to to
30 skip unavailable videos in a playlist
31 --abort-on-error Abort downloading of further videos (in the
32 playlist or the command line) if an error occurs
33 --dump-user-agent display the current browser identification
34 --user-agent UA specify a custom user agent
35 --referer REF specify a custom referer, use if the video access
36 is restricted to one domain
37 --list-extractors List all supported extractors and the URLs they
38 would handle
39 --extractor-descriptions Output descriptions of all supported extractors
40 --proxy URL Use the specified HTTP/HTTPS proxy. Pass in an
41 empty string (--proxy "") for direct connection
42 --no-check-certificate Suppress HTTPS certificate validation.
43 --cache-dir DIR Location in the filesystem where youtube-dl can
44 store downloaded information permanently. By
45 default $XDG_CACHE_HOME/youtube-dl or ~/.cache
46 /youtube-dl .
47 --no-cache-dir Disable filesystem caching
48 --bidi-workaround Work around terminals that lack bidirectional
49 text support. Requires fribidi executable in PATH
50
51 Video Selection:
52 ----------------
53
54 --playlist-start NUMBER playlist video to start at (default is 1)
55 --playlist-end NUMBER playlist video to end at (default is last)
56 --match-title REGEX download only matching titles (regex or caseless
57 sub-string)
58 --reject-title REGEX skip download for matching titles (regex or
59 caseless sub-string)
60 --max-downloads NUMBER Abort after downloading NUMBER files
61 --min-filesize SIZE Do not download any videos smaller than SIZE
62 (e.g. 50k or 44.6m)
63 --max-filesize SIZE Do not download any videos larger than SIZE (e.g.
64 50k or 44.6m)
65 --date DATE download only videos uploaded in this date
66 --datebefore DATE download only videos uploaded before this date
67 --dateafter DATE download only videos uploaded after this date
68 --min-views COUNT Do not download any videos with less than COUNT
69 views
70 --max-views COUNT Do not download any videos with more than COUNT
71 views
72 --no-playlist download only the currently playing video
73 --age-limit YEARS download only videos suitable for the given age
74 --download-archive FILE Download only videos not listed in the archive
75 file. Record the IDs of all downloaded videos in
76 it.
77
78 Download Options:
79 -----------------
80
81 -r, --rate-limit LIMIT maximum download rate in bytes per second (e.g.
82 50K or 4.2M)
83 -R, --retries RETRIES number of retries (default is 10)
84 --buffer-size SIZE size of download buffer (e.g. 1024 or 16K)
85 (default is 1024)
86 --no-resize-buffer do not automatically adjust the buffer size. By
87 default, the buffer size is automatically resized
88 from an initial value of SIZE.
89
90 Filesystem Options:
91 -------------------
92
93 -t, --title use title in file name (default)
94 --id use only video ID in file name
95 -l, --literal [deprecated] alias of --title
96 -A, --auto-number number downloaded files starting from 00000
97 -o, --output TEMPLATE output filename template. Use %(title)s to get
98 the title, %(uploader)s for the uploader name,
99 %(uploader_id)s for the uploader nickname if
100 different, %(autonumber)s to get an automatically
101 incremented number, %(ext)s for the filename
102 extension, %(format)s for the format description
103 (like "22 - 1280x720" or "HD"),%(format_id)s for
104 the unique id of the format (like Youtube's
105 itags: "137"),%(upload_date)s for the upload date
106 (YYYYMMDD), %(extractor)s for the provider
107 (youtube, metacafe, etc), %(id)s for the video id
108 , %(playlist)s for the playlist the video is in,
109 %(playlist_index)s for the position in the
110 playlist and %% for a literal percent. Use - to
111 output to stdout. Can also be used to download to
112 a different directory, for example with -o '/my/d
113 ownloads/%(uploader)s/%(title)s-%(id)s.%(ext)s' .
114 --autonumber-size NUMBER Specifies the number of digits in %(autonumber)s
115 when it is present in output filename template or
116 --auto-number option is given
117 --restrict-filenames Restrict filenames to only ASCII characters, and
118 avoid "&" and spaces in filenames
119 -a, --batch-file FILE file containing URLs to download ('-' for stdin)
120 --load-info FILE json file containing the video information
121 (created with the "--write-json" option
122 -w, --no-overwrites do not overwrite files
123 -c, --continue force resume of partially downloaded files. By
124 default, youtube-dl will resume downloads if
125 possible.
126 --no-continue do not resume partially downloaded files (restart
127 from beginning)
128 --cookies FILE file to read cookies from and dump cookie jar in
129 --no-part do not use .part files
130 --no-mtime do not use the Last-modified header to set the
131 file modification time
132 --write-description write video description to a .description file
133 --write-info-json write video metadata to a .info.json file
134 --write-annotations write video annotations to a .annotation file
135 --write-thumbnail write thumbnail image to disk
136
137 Verbosity / Simulation Options:
138 -------------------------------
139
140 -q, --quiet activates quiet mode
141 -s, --simulate do not download the video and do not write
142 anything to disk
143 --skip-download do not download the video
144 -g, --get-url simulate, quiet but print URL
145 -e, --get-title simulate, quiet but print title
146 --get-id simulate, quiet but print id
147 --get-thumbnail simulate, quiet but print thumbnail URL
148 --get-description simulate, quiet but print video description
149 --get-duration simulate, quiet but print video length
150 --get-filename simulate, quiet but print output filename
151 --get-format simulate, quiet but print output format
152 -j, --dump-json simulate, quiet but print JSON information
153 --newline output progress bar as new lines
154 --no-progress do not print progress bar
155 --console-title display progress in console titlebar
156 -v, --verbose print various debugging information
157 --dump-intermediate-pages print downloaded pages to debug problems(very
158 verbose)
159 --write-pages Write downloaded intermediary pages to files in
160 the current directory to debug problems
161
162 Video Format Options:
163 ---------------------
164
165 -f, --format FORMAT video format code, specify the order of
166 preference using slashes: "-f 22/17/18". "-f mp4"
167 and "-f flv" are also supported
168 --all-formats download all available video formats
169 --prefer-free-formats prefer free video formats unless a specific one
170 is requested
171 --max-quality FORMAT highest quality format to download
172 -F, --list-formats list all available formats (currently youtube
173 only)
174
175 Subtitle Options:
176 -----------------
177
178 --write-sub write subtitle file
179 --write-auto-sub write automatic subtitle file (youtube only)
180 --all-subs downloads all the available subtitles of the
181 video
182 --list-subs lists all available subtitles for the video
183 --sub-format FORMAT subtitle format (default=srt) ([sbv/vtt] youtube
184 only)
185 --sub-lang LANGS languages of the subtitles to download (optional)
186 separated by commas, use IETF language tags like
187 'en,pt'
188
189 Authentication Options:
190 -----------------------
191
192 -u, --username USERNAME account username
193 -p, --password PASSWORD account password
194 -n, --netrc use .netrc authentication data
195 --video-password PASSWORD video password (vimeo only)
196
197 Post-processing Options:
198 ------------------------
199
200 -x, --extract-audio convert video files to audio-only files (requires
201 ffmpeg or avconv and ffprobe or avprobe)
202 --audio-format FORMAT "best", "aac", "vorbis", "mp3", "m4a", "opus", or
203 "wav"; best by default
204 --audio-quality QUALITY ffmpeg/avconv audio quality specification, insert
205 a value between 0 (better) and 9 (worse) for VBR
206 or a specific bitrate like 128K (default 5)
207 --recode-video FORMAT Encode the video to another format if necessary
208 (currently supported: mp4|flv|ogg|webm)
209 -k, --keep-video keeps the video file on disk after the post-
210 processing; the video is erased by default
211 --no-post-overwrites do not overwrite post-processed files; the post-
212 processed files are overwritten by default
213 --embed-subs embed subtitles in the video (only for mp4
214 videos)
215 --add-metadata add metadata to the files
216
217 CONFIGURATION
218 =============
219
220 You can configure youtube-dl by placing default arguments (such as
221 --extract-audio --no-mtime to always extract the audio and not copy the
222 mtime) into /etc/youtube-dl.conf and/or ~/.config/youtube-dl.conf. On
223 Windows, the configuration file locations are
224 %APPDATA%\youtube-dl\config.txt and C:\Users\<Yourname>\youtube-dl.conf.
225
226 OUTPUT TEMPLATE
227 ===============
228
229 The -o option allows users to indicate a template for the output file
230 names. The basic usage is not to set any template arguments when
231 downloading a single file, like in
232 youtube-dl -o funny_video.flv "http://some/video". However, it may
233 contain special sequences that will be replaced when downloading each
234 video. The special sequences have the format %(NAME)s. To clarify, that
235 is a percent symbol followed by a name in parenthesis, followed by a
236 lowercase S. Allowed names are:
237
238 - id: The sequence will be replaced by the video identifier.
239 - url: The sequence will be replaced by the video URL.
240 - uploader: The sequence will be replaced by the nickname of the
241 person who uploaded the video.
242 - upload_date: The sequence will be replaced by the upload date in
243 YYYYMMDD format.
244 - title: The sequence will be replaced by the video title.
245 - ext: The sequence will be replaced by the appropriate extension
246 (like flv or mp4).
247 - epoch: The sequence will be replaced by the Unix epoch when creating
248 the file.
249 - autonumber: The sequence will be replaced by a five-digit number
250 that will be increased with each download, starting at zero.
251 - playlist: The name or the id of the playlist that contains the
252 video.
253 - playlist_index: The index of the video in the playlist, a five-digit
254 number.
255
256 The current default template is %(title)s-%(id)s.%(ext)s.
257
258 In some cases, you don't want special characters such as 中, spaces, or
259 &, such as when transferring the downloaded filename to a Windows system
260 or the filename through an 8bit-unsafe channel. In these cases, add the
261 --restrict-filenames flag to get a shorter title:
262
263 $ youtube-dl --get-filename -o "%(title)s.%(ext)s" BaW_jenozKc
264 youtube-dl test video ''_ä↭𝕐.mp4 # All kinds of weird characters
265 $ youtube-dl --get-filename -o "%(title)s.%(ext)s" BaW_jenozKc --restrict-filenames
266 youtube-dl_test_video_.mp4 # A simple file name
267
268 VIDEO SELECTION
269 ===============
270
271 Videos can be filtered by their upload date using the options --date,
272 --datebefore or --dateafter, they accept dates in two formats:
273
274 - Absolute dates: Dates in the format YYYYMMDD.
275 - Relative dates: Dates in the format
276 (now|today)[+-][0-9](day|week|month|year)(s)?
277
278 Examples:
279
280 $ youtube-dl --dateafter now-6months #will only download the videos uploaded in the last 6 months
281 $ youtube-dl --date 19700101 #will only download the videos uploaded in January 1, 1970
282 $ youtube-dl --dateafter 20000101 --datebefore 20100101 #will only download the videos uploaded between 2000 and 2010
283
284 FAQ
285 ===
286
287 Can you please put the -b option back?
288
289 Most people asking this question are not aware that youtube-dl now
290 defaults to downloading the highest available quality as reported by
291 YouTube, which will be 1080p or 720p in some cases, so you no longer
292 need the -b option. For some specific videos, maybe YouTube does not
293 report them to be available in a specific high quality format you're
294 interested in. In that case, simply request it with the -f option and
295 youtube-dl will try to download it.
296
297 I get HTTP error 402 when trying to download a video. What's this?
298
299 Apparently YouTube requires you to pass a CAPTCHA test if you download
300 too much. We're considering to provide a way to let you solve the
301 CAPTCHA, but at the moment, your best course of action is pointing a
302 webbrowser to the youtube URL, solving the CAPTCHA, and restart
303 youtube-dl.
304
305 I have downloaded a video but how can I play it?
306
307 Once the video is fully downloaded, use any video player, such as vlc or
308 mplayer.
309
310 The links provided by youtube-dl -g are not working anymore
311
312 The URLs youtube-dl outputs require the downloader to have the correct
313 cookies. Use the --cookies option to write the required cookies into a
314 file, and advise your downloader to read cookies from that file. Some
315 sites also require a common user agent to be used, use --dump-user-agent
316 to see the one in use by youtube-dl.
317
318 ERROR: no fmt_url_map or conn information found in video info
319
320 youtube has switched to a new video info format in July 2011 which is
321 not supported by old versions of youtube-dl. You can update youtube-dl
322 with sudo youtube-dl --update.
323
324 ERROR: unable to download video
325
326 youtube requires an additional signature since September 2012 which is
327 not supported by old versions of youtube-dl. You can update youtube-dl
328 with sudo youtube-dl --update.
329
330 SyntaxError: Non-ASCII character
331
332 The error
333
334 File "youtube-dl", line 2
335 SyntaxError: Non-ASCII character '\x93' ...
336
337 means you're using an outdated version of Python. Please update to
338 Python 2.6 or 2.7.
339
340 What is this binary file? Where has the code gone?
341
342 Since June 2012 (#342) youtube-dl is packed as an executable zipfile,
343 simply unzip it (might need renaming to youtube-dl.zip first on some
344 systems) or clone the git repository, as laid out above. If you modify
345 the code, you can run it by executing the __main__.py file. To recompile
346 the executable, run make youtube-dl.
347
348 The exe throws a Runtime error from Visual C++
349
350 To run the exe you need to install first the Microsoft Visual C++ 2008
351 Redistributable Package.
352
353 COPYRIGHT
354 =========
355
356 youtube-dl is released into the public domain by the copyright holders.
357
358 This README file was originally written by Daniel Bolton
359 (https://github.com/dbbolton) and is likewise released into the public
360 domain.
361
362 BUGS
363 ====
364
365 Bugs and suggestions should be reported at:
366 https://github.com/rg3/youtube-dl/issues . Unless you were prompted so
367 or there is another pertinent reason (e.g. GitHub fails to accept the
368 bug report), please do not send bug reports via personal email.
369
370 Please include the full output of the command when run with --verbose.
371 The output (including the first lines) contain important debugging
372 information. Issues without the full output are often not reproducible
373 and therefore do not get solved in short order, if ever.
374
375 For discussions, join us in the irc channel #youtube-dl on freenode.
376
377 When you submit a request, please re-read it once to avoid a couple of
378 mistakes (you can and should use this as a checklist):
379
380 Is the description of the issue itself sufficient?
381
382 We often get issue reports that we cannot really decipher. While in most
383 cases we eventually get the required information after asking back
384 multiple times, this poses an unnecessary drain on our resources. Many
385 contributors, including myself, are also not native speakers, so we may
386 misread some parts.
387
388 So please elaborate on what feature you are requesting, or what bug you
389 want to be fixed. Make sure that it's obvious
390
391 - What the problem is
392 - How it could be fixed
393 - How your proposed solution would look like
394
395 If your report is shorter than two lines, it is almost certainly missing
396 some of these, which makes it hard for us to respond to it. We're often
397 too polite to close the issue outright, but the missing info makes
398 misinterpretation likely. As a commiter myself, I often get frustrated
399 by these issues, since the only possible way for me to move forward on
400 them is to ask for clarification over and over.
401
402 For bug reports, this means that your report should contain the complete
403 output of youtube-dl when called with the -v flag. The error message you
404 get for (most) bugs even says so, but you would not believe how many of
405 our bug reports do not contain this information.
406
407 Site support requests must contain an example URL. An example URL is a
408 URL you might want to download, like
409 http://www.youtube.com/watch?v=BaW_jenozKc . There should be an obvious
410 video present. Except under very special circumstances, the main page of
411 a video service (e.g. http://www.youtube.com/ ) is not an example URL.
412
413 Are you using the latest version?
414
415 Before reporting any issue, type youtube-dl -U. This should report that
416 you're up-to-date. Ábout 20% of the reports we receive are already
417 fixed, but people are using outdated versions. This goes for feature
418 requests as well.
419
420 Is the issue already documented?
421
422 Make sure that someone has not already opened the issue you're trying to
423 open. Search at the top of the window or at
424 https://github.com/rg3/youtube-dl/search?type=Issues . If there is an
425 issue, feel free to write something along the lines of "This affects me
426 as well, with version 2015.01.01. Here is some more information on the
427 issue: ...". While some issues may be old, a new post into them often
428 spurs rapid activity.
429
430 Why are existing options not enough?
431
432 Before requesting a new feature, please have a quick peek at the list of
433 supported options. Many feature requests are for features that actually
434 exist already! Please, absolutely do show off your work in the issue
435 report and detail how the existing similar options do not solve your
436 problem.
437
438 Is there enough context in your bug report?
439
440 People want to solve problems, and often think they do us a favor by
441 breaking down their larger problems (e.g. wanting to skip already
442 downloaded files) to a specific request (e.g. requesting us to look
443 whether the file exists before downloading the info page). However, what
444 often happens is that they break down the problem into two steps: One
445 simple, and one impossible (or extremely complicated one).
446
447 We are then presented with a very complicated request when the original
448 problem could be solved far easier, e.g. by recording the downloaded
449 video IDs in a separate file. To avoid this, you must include the
450 greater context where it is non-obvious. In particular, every feature
451 request that does not consist of adding support for a new site should
452 contain a use case scenario that explains in what situation the missing
453 feature would be useful.
454
455 Does the issue involve one problem, and one problem only?
456
457 Some of our users seem to think there is a limit of issues they can or
458 should open. There is no limit of issues they can or should open. While
459 it may seem appealing to be able to dump all your issues into one
460 ticket, that means that someone who solves one of your issues cannot
461 mark the issue as closed. Typically, reporting a bunch of issues leads
462 to the ticket lingering since nobody wants to attack that behemoth,
463 until someone mercifully splits the issue into multiple ones.
464
465 In particular, every site support request issue should only pertain to
466 services at one site (generally under a common domain, but always using
467 the same backend technology). Do not request support for vimeo user
468 videos, Whitehouse podcasts, and Google Plus pages in the same issue.
469 Also, make sure that you don't post bug reports alongside feature
470 requests. As a rule of thumb, a feature request does not include outputs
471 of youtube-dl that are not immediately related to the feature at hand.
472 Do not post reports of a network error alongside the request for a new
473 video service.
474
475 Is anyone going to need the feature?
476
477 Only post features that you (or an incapicated friend you can personally
478 talk to) require. Do not post features because they seem like a good
479 idea. If they are really useful, they will be requested by someone who
480 requires them.