aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
AgeCommit message (Collapse)Author
2013-12-16Incorrect variable is used to check whether thumbnail existsalimirjamali
Dear @phihag I believe in line 848, the correct variable to check is 'thumb_filename' rather than 'infofn' Kindly advise Mit freundlichen Gruessen Ali
2013-12-16Simplify --playlist-start / --playlist-end interfacePhilipp Hagemeister
2013-12-16Apply --no-overwrites for --write-* files as well (Fixes #1980)Philipp Hagemeister
2013-12-16Add --get-duration (Fixes #859)Philipp Hagemeister
2013-12-16Add --min-views / --max-views (Fixes #1979)Philipp Hagemeister
2013-12-11Fix thumbnail filename determination (Fixes #1945)Philipp Hagemeister
2013-12-10[YoutubeDL] Simplify filename preparationPhilipp Hagemeister
2013-12-09Set 'NA' as the default value for missing fields in the output template ↵Jaime Marquínez Ferrándiz
(fixes #1931) Remove the `except KeyError` clause, it won't get raised anymore
2013-12-09Improve --bidi-workaround supportPhilipp Hagemeister
2013-12-09[--load-info] Always read file as UTF-8Philipp Hagemeister
This allows editing the file (and not escaping non-ASCII characters) and reloading it in.
2013-12-09Merge remote-tracking branch 'jaimeMF/load-info'Philipp Hagemeister
2013-12-09Remove unused importsPhilipp Hagemeister
2013-12-09Add filename to --dump-json output (Fixes #1908)Philipp Hagemeister
2013-12-09Add a workaround for terminals without bidi support (Fixes #1912)Philipp Hagemeister
2013-12-06[wistia] Add extractorPhilipp Hagemeister
2013-12-05[9gag] Add extractorPhilipp Hagemeister
2013-12-03Option '--load-info': if the download fails, try extracting the info with ↵Jaime Marquínez Ferrándiz
the 'webpage_url' field of the info dict The video url may have expired.
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-02Add --socket-timeout optionPhilipp Hagemeister
2013-12-01Make socket timeout configurable, and bump default to 10 minutes (#1862)Philipp Hagemeister
2013-11-29Do not mutate default argumentsPhilipp Hagemeister
In this case, it looks rather harmless (since the conditions for --restrict-filenames should not change while a process is running), but just to be sure. This also simplifies the interface for callers, who can just pass in the idiomatic None for "I don't care, whatever is the default".
2013-11-26YoutubeDL: set the 'params' property before any message/warning/error is ↵Jaime Marquínez Ferrándiz
sent (fixes #1840) If it sets the 'restrictfilenames' param, it will first report a warning. It will try to get the logger from the 'params' property, which would be set at that moment to None, raising the error 'AttributeError: 'NoneType' object has no attribute 'get''
2013-11-25Use the 'extractor_key' field for the download archive fileJaime Marquínez Ferrándiz
It has the same value as the ie_key.
2013-11-25Fix typo in the documentation of the 'download_archive' paramJaime Marquínez Ferrándiz
2013-11-25[soundcloud] Support for listing of audio-only filesPhilipp Hagemeister
2013-11-25Merge pull request #1829 from jaimeMF/ydl-empty-paramsPhilipp Hagemeister
Allow to initialize a YoutubeDL object without parameters
2013-11-25Do not warn about fixed output template if --max-downloads is 1Philipp Hagemeister
Fixes #1828
2013-11-25Allow to initialize a YoutubeDL object without parametersJaime Marquínez Ferrándiz
Having to pass the 'outtmpl' parameter feels really strange when you just want to extract the info of a video.
2013-11-25Reduce socket timeoutPhilipp Hagemeister
2013-11-25Fix --download-archive (Fixes #1826)Philipp Hagemeister
2013-11-25Merge branch 'opener-to-ydl'Philipp Hagemeister
2013-11-25Remove quality_name field and improve zdf extractorPhilipp Hagemeister
2013-11-25[zdf/common] Use API in ZDF extractor.Philipp Hagemeister
This also comes with a lot of extra format fields Fixes #1518
2013-11-24Merge branch 'master' into opener-to-ydlPhilipp Hagemeister
2013-11-24Document proxyPhilipp Hagemeister
2013-11-24Simplify logger code(#1811)Philipp Hagemeister
2013-11-23Log to an external logger (fixes #1810)Itay Brandes
Sadly applications using youtube-dl's python sources can't directly access it's log stream. It's pretty much limited to stdout and stderr only. It should log to logging.Logger instance passed to YoutubeDL's params dictionary.
2013-11-22Match --download-archive during playlist processing (Fixes #1745)Philipp Hagemeister
2013-11-22Print full title in --get-title output (#1806)Philipp 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-20Merge remote-tracking branch 'dz0ny/patch-1'Philipp Hagemeister
2013-11-20import json for --dump-jsonPhilipp Hagemeister
2013-11-20Add an option to dump json informationMohamedh Fazal
2013-11-18Correctly write and restore the console title on the stack (fixes #1782)Jaime Marquínez Ferrándiz
2013-11-17Allow --console-title when --quiet is given (Fixes #1783)Philipp Hagemeister
2013-11-17Save and restore console title (Fixes #1782)Philipp Hagemeister
2013-11-17Remove * importsPhilipp Hagemeister
2013-11-17Move console_title to YoutubeDLPhilipp Hagemeister
2013-11-16Fix indentation of (best) and (worst) in --list-formatsPhilipp Hagemeister
2013-11-16[spiegel] Implement format selectionPhilipp Hagemeister