Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | [funnyordie] fix video url extraction | Jaime Marquínez Ferrándiz | 2013-09-12 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Starts of a Windows service | Philipp Hagemeister | 2013-09-16 | 1 | -15/+128 | |
| | | | | | ||||||
* | | | | | [buildserver] Service installation and uninstallation | Philipp Hagemeister | 2013-09-13 | 1 | -50/+95 | |
| | | | | | ||||||
* | | | | | [buildserver] Rely on repository license | Philipp Hagemeister | 2013-09-12 | 1 | -25/+0 | |
| | | | | | ||||||
* | | | | | Add original buildserver from @fraca7 | Philipp Hagemeister | 2013-09-12 | 1 | -0/+272 | |
|/ / / / | ||||||
* | | | | release 2013.09.12 | Philipp Hagemeister | 2013-09-12 | 2 | -5/+3 | |
| | | | | ||||||
* | | | | Check for both automatic captions and subtitles with options `--write-sub` ↵ | Jaime Marquínez Ferrándiz | 2013-09-12 | 1 | -6/+15 | |
| | | | | | | | | | | | | | | | | and `--write-auto-sub` (fixes #1224) | |||||
* | | | | [youtube] Fix detection of videos with automatic captions | Jaime Marquínez Ferrándiz | 2013-09-11 | 1 | -1/+5 | |
| | | | | ||||||
* | | | | [subtitles] Also list the available automatic captions languages with ↵ | Jaime Marquínez Ferrándiz | 2013-09-11 | 2 | -2/+6 | |
| | | | | | | | | | | | | | | | | '--list-sub' | |||||
* | | | | [youtube] Support automatic captions with original language different from ↵ | Jaime Marquínez Ferrándiz | 2013-09-11 | 2 | -41/+47 | |
| | | | | | | | | | | | | | | | | English (fixes #1225) and download in multiple languages. | |||||
* | | | | Credit @iemejia | Jaime Marquínez Ferrándiz | 2013-09-11 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Merge branch 'subtitles_rework' (closes PR #1326) | Jaime Marquínez Ferrándiz | 2013-09-11 | 8 | -163/+259 | |
|\ \ \ \ | ||||||
| * | | | | [subtitles] Use self._download_webpage for extracting the subtitles | Jaime Marquínez Ferrándiz | 2013-09-11 | 3 | -18/+11 | |
| | | | | | | | | | | | | | | | | | | | | It raises ExtractorError for the same exceptions we have to catch. | |||||
| * | | | | [subtitles] Simplify the extraction of subtitles in subclasses and remove ↵ | Jaime Marquínez Ferrándiz | 2013-09-11 | 3 | -26/+26 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NoAutoSubtitlesInfoExtractor Subclasses just need to call the method extract_subtitles, which will call _extract_subtitles and _request_automatic_caption Now the default implementation of _request_automatic_caption returns {}. | |||||
| * | | | | [subtitles] rename SubitlesIE to SubtitlesInfoExtractor | Jaime Marquínez Ferrándiz | 2013-09-11 | 3 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | Otherwise it can be automatically detected as a IE ready for use. | |||||
| * | | | | [youtube] move subtitles methods from the base extractor to YoutubeIE | Jaime Marquínez Ferrándiz | 2013-09-11 | 1 | -57/+58 | |
| | | | | | ||||||
| * | | | | [subtitles] made inheritance hierarchy flat as requested | Ismael Mejia | 2013-09-11 | 2 | -21/+17 | |
| | | | | | ||||||
| * | | | | Merge branch 'master' into subtitles_rework | Ismael Mejia | 2013-09-11 | 12 | -20/+158 | |
| |\ \ \ \ | ||||||
| * \ \ \ \ | Merge branch 'master' into subtitles_rework | Ismael Mejia | 2013-09-06 | 49 | -159/+1682 | |
| |\ \ \ \ \ | | | |_|/ / | | |/| | | | ||||||
| * | | | | | [subtitles] fixed multiple subtitles language separated by comma after merge | Ismael Mejia | 2013-09-06 | 6 | -26/+49 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As mentioned in the pull request, I forgot to include this changes. https://github.com/rg3/youtube-dl/commit/aa6a10c44a8e2e86f709c5301f9ea6ac3f01f002 | |||||
| * | | | | | Merge branch 'master' into subtitles_rework | Ismael Mejia | 2013-08-28 | 7 | -119/+368 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge branch 'master' into subtitles_rework | Ismael Mejia | 2013-08-23 | 4 | -7/+6 | |
| |\ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ | Merge branch 'master' into subtitles_rework | Ismael Mejia | 2013-08-22 | 44 | -458/+1388 | |
| |\ \ \ \ \ \ \ | ||||||
| * | | | | | | | | [subtitles] Added tests to check correct behavior when no subtitles are | Ismael Mejia | 2013-08-08 | 2 | -4/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | available | |||||
| * | | | | | | | | [subtitles] Skips now the subtitles that has already been downloaded. | Ismael Mejia | 2013-08-08 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Just a validation for file exists, I also removed a method that wasn't been used because it was a copy paste from FileDownloader. | |||||
| * | | | | | | | | [subtitles] Improved docs + new class for servers who don't support | Ismael Mejia | 2013-08-08 | 2 | -22/+19 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | auto-caption | |||||
| * | | | | | | | | [test] Cleaned subtitles tests | Ismael Mejia | 2013-08-08 | 2 | -110/+61 | |
| | | | | | | | | | ||||||
| * | | | | | | | | [subtitles] removed only-sub option (--skip-download achieves the same | Ismael Mejia | 2013-08-08 | 4 | -20/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | functionality) | |||||
| * | | | | | | | | Separated subtitle options in their own group | Ismael Mejia | 2013-08-08 | 1 | -7/+10 | |
| | | | | | | | | | ||||||
| * | | | | | | | | [internal] Improved subtitle architecture + (update in | Ismael Mejia | 2013-08-08 | 3 | -144/+73 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | youtube/dailymotion) The structure of subtitles was refined, you only need to implement one method that returns a dictionnary of the available subtitles (lang, url) to support all the subtitle options in a website. I updated the subtitle downloaders for youtube/dailymotion to show how it works. | |||||
| * | | | | | | | | Undo the previous commit (it was a mistake) | Ismael Mejia | 2013-08-07 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| * | | | | | | | | [dailymotion] Added support for subtitles + new InfoExtractor for | Ismael Mejia | 2013-08-07 | 4 | -11/+242 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | generic subtitle download. The idea is that all subtitle downloaders must descend from SubtitlesIE and implement only three basic methods to achieve the complete subtitle download functionality. This will allow to reduce the code in YoutubeIE once it is rewritten. | |||||
| * | | | | | | | | Fixed small type issue | Ismael Mejia | 2013-08-07 | 1 | -1/+2 | |
| | | | | | | | | | ||||||
| * | | | | | | | | Added exceptions for the subtitle and video types in .gitignore | Ismael Mejia | 2013-08-07 | 1 | -1/+8 | |
| | | | | | | | | | ||||||
* | | | | | | | | | [howcast] Do not download from http://www.howcast.com/videos/{video_id} | Jaime Marquínez Ferrándiz | 2013-09-11 | 1 | -2/+1 | |
| |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | It takes too much to follow the redirection. | |||||
* | | | | | | | | In the supported sites page, sort the extractors in case insensitive | Jaime Marquínez Ferrándiz | 2013-09-11 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | release 2013.11.09 | Philipp Hagemeister | 2013-09-11 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | [youtube] update algo for length 85 (fixes #1408 and fixes #1406) | Jaime Marquínez Ferrándiz | 2013-09-11 | 2 | -3/+3 | |
| | | | | | | | | ||||||
* | | | | | | | | [francetv] Add an extractor for francetvinfo.fr (closes #1317) | Jaime Marquínez Ferrándiz | 2013-09-10 | 2 | -18/+48 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It uses the same system as Pluzz, create a base class for both extractors. | |||||
* | | | | | | | | Merge pull request #1402 from Rudloff/canalc2 | Philipp Hagemeister | 2013-09-10 | 1 | -1/+1 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Wrong property name | |||||
| * | | | | | | | | Wrong property name | Pierre Rudloff | 2013-09-10 | 1 | -1/+1 | |
|/ / / / / / / / | ||||||
* | | | | | | | | Add an extractor for pluzz.francetv.fr (closes PR #1399) | Pierre Rudloff | 2013-09-10 | 2 | -0/+51 | |
| | | | | | | | | ||||||
* | | | | | | | | release 2013.09.10 | Philipp Hagemeister | 2013-09-10 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Add an extractor for Slideshare (closes #1400) | Jaime Marquínez Ferrándiz | 2013-09-10 | 2 | -0/+48 | |
| | | | | | | | | ||||||
* | | | | | | | | [sohu] add support for my.tv.sohu.com urls (fixes #1398) | Jaime Marquínez Ferrándiz | 2013-09-09 | 1 | -6/+10 | |
| | | | | | | | | ||||||
* | | | | | | | | Fix the minutes part in FileDownloader.format_seconds (fixed #1397) | Jaime Marquínez Ferrándiz | 2013-09-09 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It printed for the minutes the result of (seconds // 60) | |||||
* | | | | | | | | [youtube] Modify the regex to match ids of length 11 (fixes #1396) | Jaime Marquínez Ferrándiz | 2013-09-09 | 2 | -5/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In urls like http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930 you can't split the query string and ids always have that length. | |||||
* | | | | | | | | Revert "[youtube] Fix detection of tags from HLS videos." | Jaime Marquínez Ferrándiz | 2013-09-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They have undo the change This reverts commit 0638ad9999e7c374b253d0e13f4e3a20ef0b1171. | |||||
* | | | | | | | | release 2013.09.07 | Philipp Hagemeister | 2013-09-07 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Merge branch 'master' of github.com:rg3/youtube-dl | Philipp Hagemeister | 2013-09-07 | 6 | -15/+92 | |
|\ \ \ \ \ \ \ \ | | |_|_|_|/ / / | |/| | | | | | |