aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
AgeCommit message (Collapse)Author
2013-09-21Warn if no locale is set (#1474)Philipp Hagemeister
2013-09-20Catch socket.error before IOErrorJaime Marquínez Ferrándiz
Since python 2.6 it's a child class.
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-13Merge pull request #1350 from Jaiz909/description-keyerror-fixJaime Marquínez Ferrándiz
Fixed issue #1277 KeyError when no description.
2013-08-31Fixed issue #1277 KeyError when no description.Jai Grimshaw
Allows a continue with a warning when an extractor cannot retrieve a description.
2013-08-28Merge remote-tracking branch 'origin/reuse_ies'Philipp Hagemeister
2013-08-28Print playpath with --get-url (Fixes #1334)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-23Merge pull request #937 from jaimeMF/subtitles_reworkJaime Marquínez Ferrándiz
Subtitles rework
2013-08-08Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister
2013-08-08Clarify template error message (#1209)Philipp Hagemeister
2013-08-05More informative erroruser
2013-07-31Switch some calls to to_stderr to report_error and report_warningJaime Marquínez Ferrándiz
2013-07-20Don't try to write the subtitles if it's NoneJaime Marquínez Ferrándiz
2013-07-20Use a dictionary for storing the subtitlesJaime Marquínez Ferrándiz
The errors while getting the subtitles are reported as warnings, if no subtitles are found return and empty dict.
2013-07-20Save subtitles using the same code for all the optionsJaime Marquínez Ferrándiz
2013-07-12Don't try to save the thumbnail if it's NoneJaime Marquínez Ferrándiz
It means the extractor couldn't find it
2013-07-12Use determine_ext when saving the thumbnailJaime Marquínez Ferrándiz
Urls that contain a query produced filenames with wrong extensions
2013-07-10Set the playlist_index and playlist fields for already resolved video results.Jaime Marquínez Ferrándiz
2013-07-08YoutubeIE: reuse instances of InfoExtractors (closes #998)Jaime Marquínez Ferrándiz
When a IE is added to the list, it's also added to a dictionary. When a IE is requested it first looks in the dictionary and if there's no instance it will create a new one. That way _real_initialize is only called once for each IE, saving time if it needs to login for example.
2013-06-27Add function add_default_info_extractors to YoutubeDLJaime Marquínez Ferrándiz
It adds to the list the ies returned by ge_extractors
2013-06-26Fixed typo in subtitle format option (from: sbt => sbv)Ismael Mejia
2013-06-26Added support for additional vtt subtitle format (WebVTT) in youtube-dl.Ismael Mejia
2013-06-25Add the option "--write-auto-sub" to download automatic subtitles from YoutubeJaime Marquínez Ferrándiz
Now automatic subtitles are only downloaded if the option is given. (closes #903)
2013-06-25Add "--video-password" option (related #889)Jaime Marquínez Ferrándiz
Used only for accessing a private video Restore the error when the account is missing
2013-06-24Split FileDownloader in two classes: FileDownloader and YoutubeDLJaime Marquínez Ferrándiz
YoutubeDL is the class that coordinates everything FileDownloader gets a filename and an info dict and downloads the video.