Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-13 | Merge pull request #1350 from Jaiz909/description-keyerror-fix | Jaime Marquínez Ferrándiz | |
Fixed issue #1277 KeyError when no description. | |||
2013-08-31 | Fixed issue #1277 KeyError when no description. | Jai Grimshaw | |
Allows a continue with a warning when an extractor cannot retrieve a description. | |||
2013-08-28 | Merge remote-tracking branch 'origin/reuse_ies' | Philipp Hagemeister | |
2013-08-28 | Print playpath with --get-url (Fixes #1334) | Philipp Hagemeister | |
2013-08-23 | Allow to specify multiple subtitles languages separated by commas (closes #518) | Jaime Marquínez Ferrándiz | |
2013-08-23 | Add a post processor for embedding subtitles in mp4 videos (closes #1052) | Jaime Marquínez Ferrándiz | |
2013-08-23 | Merge pull request #937 from jaimeMF/subtitles_rework | Jaime Marquínez Ferrándiz | |
Subtitles rework | |||
2013-08-08 | Merge branch 'master' of github.com:rg3/youtube-dl | Philipp Hagemeister | |
2013-08-08 | Clarify template error message (#1209) | Philipp Hagemeister | |
2013-08-05 | More informative error | user | |
2013-07-31 | Switch some calls to to_stderr to report_error and report_warning | Jaime Marquínez Ferrándiz | |
2013-07-20 | Don't try to write the subtitles if it's None | Jaime Marquínez Ferrándiz | |
2013-07-20 | Use a dictionary for storing the subtitles | Jaime 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-20 | Save subtitles using the same code for all the options | Jaime Marquínez Ferrándiz | |
2013-07-12 | Don't try to save the thumbnail if it's None | Jaime Marquínez Ferrándiz | |
It means the extractor couldn't find it | |||
2013-07-12 | Use determine_ext when saving the thumbnail | Jaime Marquínez Ferrándiz | |
Urls that contain a query produced filenames with wrong extensions | |||
2013-07-10 | Set the playlist_index and playlist fields for already resolved video results. | Jaime Marquínez Ferrándiz | |
2013-07-08 | YoutubeIE: 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-27 | Add function add_default_info_extractors to YoutubeDL | Jaime Marquínez Ferrándiz | |
It adds to the list the ies returned by ge_extractors | |||
2013-06-26 | Fixed typo in subtitle format option (from: sbt => sbv) | Ismael Mejia | |
2013-06-26 | Added support for additional vtt subtitle format (WebVTT) in youtube-dl. | Ismael Mejia | |
2013-06-25 | Add the option "--write-auto-sub" to download automatic subtitles from Youtube | Jaime Marquínez Ferrándiz | |
Now automatic subtitles are only downloaded if the option is given. (closes #903) | |||
2013-06-25 | Add "--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-24 | Split FileDownloader in two classes: FileDownloader and YoutubeDL | Jaime Marquínez Ferrándiz | |
YoutubeDL is the class that coordinates everything FileDownloader gets a filename and an info dict and downloads the video. |