aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
AgeCommit message (Collapse)Author
2013-10-25Document the %(format_id)s field for the output templateJaime Marquínez Ferrándiz
2013-10-23Hide the video password on verbose modeJaime Marquínez Ferrándiz
2013-10-18Add new option --abort-on-errorPhilipp Hagemeister
2013-10-18Document %(format)s (#1612)Philipp Hagemeister
2013-10-18Add metavar to --cache-dirPhilipp Hagemeister
2013-10-18Merge remote-tracking branch 'jaimeMF/format_selection'Philipp Hagemeister
2013-10-15Use upper-case for prefixes in help to signify bytes (#1043)Philipp Hagemeister
2013-10-15Merge remote-tracking branch 'alphapapa/master'Philipp Hagemeister
2013-10-15Do not import *Philipp Hagemeister
2013-10-15Credit @Elbandi for sztvhuPhilipp Hagemeister
2013-10-14[youtube] Adds #1312 Download annotationsJai Grimshaw
Adds #1321 Download annotations from youtube Annotations are downloaded and written to a .annotations.xml file using the https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=$VIDEOID API. Added unit test for annotations.
2013-10-11Implement format selection in YoutubeDLJaime Marquínez Ferrándiz
Now the IEs can set a formats field in the info_dict, with the formats ordered from worst to best quality. It's a list of dicts with the following fields: * Mandatory: url and ext * Optional: format and format_id The format_id is used for choosing which formats have to be downloaded. Now a video result is processed by the method process_video_result.
2013-10-11Add a PostProcessor for adding metadata to the file (closes #1570)Jaime Marquínez Ferrándiz
It currently sets the title, the date and the author values.
2013-10-07Fix the printing of the proxy map in debug modeJaime Marquínez Ferrándiz
The proxies have to be extracted from the opener.handlers
2013-10-07Move opener setup into a separate helper functionPhilipp Hagemeister
2013-10-07Restore warning when user forgets to quote URL (#1396)Philipp Hagemeister
2013-10-06Merge branch 'download-archive'Philipp Hagemeister
Conflicts: youtube_dl/YoutubeDL.py youtube_dl/__init__.py
2013-10-06Allow users to specify an age limit (fixes #1545)Philipp Hagemeister
With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS . Add rudimentary support in youtube, pornotube, and youporn.
2013-10-06Add basic --download-archive optionPhilipp Hagemeister
Often, users want to be able to download only videos they haven't seen before, despite the video files having been deleted or moved in the mean time. When --download-archive FILE is given, the extractor and ID of every download is recorded in the specified file. If it is already present, the video in question is skipped.
2013-10-02Fix help of --cachedirPhilipp Hagemeister
2013-10-02[youtube] Simplify cache_dir code (#1529)Philipp Hagemeister
2013-10-02Merge remote-tracking branch 'holomorph/master'Philipp Hagemeister
2013-09-30Support XDG base directory specificationMark Oteiza
2013-09-30implement --no-playlist to only download current video - closes #755Filippo Valsorda
2013-09-29[update] Look for .exe extension on Windows (Fixes #745)Philipp Hagemeister
2013-09-24Remove debugging codePhilipp Hagemeister
2013-09-24Add option --no-cache-dirPhilipp Hagemeister
2013-09-24Allow opts.cachedir == None to disable cachePhilipp Hagemeister
2013-09-22[youtube] Actually pass in cachedir optionPhilipp Hagemeister
2013-09-22[youtube] Improve cache and add an option to print the extracted signaturesPhilipp Hagemeister
2013-09-21Abort if extractaudio is given without a variable extension (#1470)Philipp Hagemeister
2013-09-18Credit @Ruirize for newgroundsPhilipp Hagemeister
2013-09-18Clarify -i help (#1453)Philipp Hagemeister
2013-09-16Always correct encoding when writing to sys.stderr (Fixes #1435)Philipp Hagemeister
2013-09-14Now --all-sub is a modifier to --write-sub and --write-auto-sub (closes #1412)Jaime Marquínez Ferrándiz
For keeping backwards compatibility --all-sub sets --write-sub if --write-auto-sub is not given
2013-09-11Credit @iemejiaJaime Marquínez Ferrándiz
2013-09-06Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-09-06[subtitles] fixed multiple subtitles language separated by comma after mergeIsmael Mejia
As mentioned in the pull request, I forgot to include this changes. https://github.com/rg3/youtube-dl/commit/aa6a10c44a8e2e86f709c5301f9ea6ac3f01f002
2013-09-04Credit @Huarong for tv.sohu.comJaime Marquínez Ferrándiz
2013-08-30add support for "-f mp4" for YouTubeAllan Zhou
2013-08-28Hide the password and username in verbose mode (closes #1089)Jaime Marquínez Ferrándiz
2013-08-28Fix platform name in Python 2 with --verbose (Closes #1228)Philipp Hagemeister
2013-08-28Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-08-27Delete default user agent (Fixes #1309)Philipp Hagemeister
2013-08-23Allow to specify multiple subtitles languages separated by commas (closes #518)Jaime Marquínez Ferrándiz
2013-08-23Add a post processor for embedding subtitles in mp4 videos (closes #1052)Jaime Marquínez Ferrándiz
2013-08-22Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-08-22[subtitles] separated subtitle options in their own groupIsmael Mejia
2013-08-22Credit Pierre Rudloff for JeuxVideoIE and UnistraIEJaime Marquínez Ferrándiz
2013-08-08[subtitles] removed only-sub option (--skip-download achieves the sameIsmael Mejia
functionality)