aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
AgeCommit message (Collapse)Author
2013-12-16Simplify --playlist-start / --playlist-end interfacePhilipp Hagemeister
2013-12-16Credit @mjorlitzky for pornhd (#1961)Philipp Hagemeister
2013-12-16Set process title to youtube-dlPhilipp Hagemeister
This allows killing all youtube-dl processes with killall youtube-dl, and shows up nicer in some programs.
2013-12-16Add --get-duration (Fixes #859)Philipp Hagemeister
2013-12-16Add --min-views / --max-views (Fixes #1979)Philipp Hagemeister
2013-12-15Fix detection of the extension if the 'extractaudio' is given and improve ↵Jaime Marquínez Ferrándiz
the error message (#1969) Using 'foo.mp4' shouldn't raise an error. If 'foo' is given suggest using 'foo.%(ext)s' for the template
2013-12-09Improve --bidi-workaround supportPhilipp Hagemeister
2013-12-09Merge remote-tracking branch 'jaimeMF/load-info'Philipp Hagemeister
2013-12-09Add a workaround for terminals without bidi support (Fixes #1912)Philipp Hagemeister
2013-12-03Add --load-info option (#972)Jaime Marquínez Ferrándiz
It just calls the 'YoutubeDL.process_ie_result' with the dictionary from the json file
2013-12-03Document disabling proxy (#1882)Philipp Hagemeister
2013-12-03[configuration] Undo code breakagePhilipp Hagemeister
2013-12-03Correct configuration file locationsPhilipp Hagemeister
2013-12-03Add Windows configuration file locations (#1881)Philipp Hagemeister
2013-12-03Clarify --download-archive help (#1757)Philipp Hagemeister
2013-12-02Credit @dstftw for smotri IEPhilipp Hagemeister
2013-12-02Add --socket-timeout optionPhilipp Hagemeister
2013-11-30Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister
2013-11-30Clarify help of --write-pages (#1853)Philipp Hagemeister
2013-11-29Clarify --download-archive helpPhilipp Hagemeister
2013-11-29fix typo in helpNicolas Kaiser
2013-11-26Include the proxy in the parameters for YoutubeDL (fixes #1831)Jaime Marquínez Ferrándiz
2013-11-25Do not warn about fixed output template if --max-downloads is 1Philipp Hagemeister
Fixes #1828
2013-11-24Merge branch 'master' into opener-to-ydlPhilipp Hagemeister
2013-11-24Credit @takuya0301 for niconicoPhilipp Hagemeister
2013-11-22Move the opener to the YoutubeDL object.Philipp Hagemeister
This is the first step towards being able to just import youtube_dl and start using it. Apart from removing global state, this would fix problems like #1805.
2013-11-20Credit @diffycat for anitubePhilipp Hagemeister
2013-11-20import json for --dump-jsonPhilipp Hagemeister
2013-11-20Add an option to dump json informationMohamedh Fazal
2013-11-17Save and restore console title (Fixes #1782)Philipp Hagemeister
2013-11-13Credit @saper for tvp IE (#1730)Philipp Hagemeister
2013-11-13Credit @jelly for gamekings extractor (#1759)Philipp Hagemeister
2013-11-11Clarify -c. Do not pass it in if you don't know what you're doingPhilipp Hagemeister
Suggested in #1743
2013-11-09Fix the documentation of '--autonumber-size' (#1743)Jaime Marquínez Ferrándiz
it's '--auto-number' not '--autonumber'
2013-10-28New debug option --write-pagesPhilipp Hagemeister
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