Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Reorder info_dict documentation | Philipp Hagemeister | 2013-12-16 | 1 | -25/+27 | |
| | ||||||
* | Document duration field | Philipp Hagemeister | 2013-12-16 | 1 | -1/+2 | |
| | ||||||
* | [mtv] Fixup incorrectly encoded XML documents | Philipp Hagemeister | 2013-12-10 | 1 | -1/+4 | |
| | ||||||
* | Add fatal=False parameter to _download_* functions. | Philipp Hagemeister | 2013-12-09 | 1 | -7/+23 | |
| | | | | This allows us to simplify the calls in the youtube extractor even further. | |||||
* | [9gag] Like/dislike count (#1895) | Philipp Hagemeister | 2013-12-05 | 1 | -0/+3 | |
| | ||||||
* | [smotri] Simplify | Philipp Hagemeister | 2013-12-02 | 1 | -1/+2 | |
| | ||||||
* | [zdf] Use _download_xml | Philipp Hagemeister | 2013-11-28 | 1 | -1/+2 | |
| | ||||||
* | Merge branch 'opener-to-ydl' | Philipp Hagemeister | 2013-11-25 | 1 | -2/+2 | |
|\ | ||||||
| * | Merge branch 'master' into opener-to-ydl | Philipp Hagemeister | 2013-11-24 | 1 | -1/+9 | |
| |\ | ||||||
| * | | Move the opener to the YoutubeDL object. | Philipp Hagemeister | 2013-11-22 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | 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. | |||||
* | | | Remove quality_name field and improve zdf extractor | Philipp Hagemeister | 2013-11-25 | 1 | -1/+0 | |
| | | | ||||||
* | | | [zdf/common] Use API in ZDF extractor. | Philipp Hagemeister | 2013-11-25 | 1 | -0/+2 | |
| |/ |/| | | | | | | | This also comes with a lot of extra format fields Fixes #1518 | |||||
* | | [collegehumor] Encode the xml before calling ↵ | Jaime Marquínez Ferrándiz | 2013-11-24 | 1 | -0/+6 | |
| | | | | | | | | | | | | xml.etree.ElementTree.fromstring (fixes #1822) Uses a new helper method in InfoExtractor: _download_xml | |||||
* | | Match --download-archive during playlist processing (Fixes #1745) | Philipp Hagemeister | 2013-11-22 | 1 | -1/+3 | |
|/ | ||||||
* | Add support for tou.tv (Fixes #1792) | Philipp Hagemeister | 2013-11-20 | 1 | -0/+28 | |
| | ||||||
* | Add automatic generation of format note based on bitrate and codecs | Philipp Hagemeister | 2013-11-16 | 1 | -0/+4 | |
| | ||||||
* | Don't accept '>' inside the content attribute in OpenGraph regexes | Jaime Marquínez Ferrándiz | 2013-11-15 | 1 | -3/+5 | |
| | ||||||
* | Improve the OpenGraph regex | Jaime Marquínez Ferrándiz | 2013-11-15 | 1 | -5/+9 | |
| | | | | | * Do not accept '>' between the property and content attributes. * Recognize the properties if the content attribute is before the property attribute using two regexes (fixes the extraction of the description for SlideshareIE). | |||||
* | [common] Simplify og_search_property | Philipp Hagemeister | 2013-11-12 | 1 | -3/+3 | |
| | ||||||
* | Fix AssertionError when og property not found | Marcin Cieślak | 2013-11-05 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On tvp.pl some webpages contain OpenGraph metadata and some don't. If og property is not found, _og_search_description fails with WARNING: unable to extract OpenGraph description; please report this issue on http://yt-dl.org/bug Traceback (most recent call last): File "/usr/home/saper/bin/youtube-dl", line 18, in <module> youtube_dl.main() File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 766, in main _real_main(argv) File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 719, in _real_main retcode = ydl.download(all_urls) File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 715, in download videos = self.extract_info(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 348, in extract_info ie_result = ie.extract(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 125, in extract return self._real_extract(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/tvp.py", line 56, in _real_extract info['description'] = self._og_search_description(webpage) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 331, in _og_search_description return self._og_search_property('description', html, fatal=False, **kargs) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 325, in _og_search_property return unescapeHTML(escaped) File "/usr/home/saper/sw/youtube-dl/youtube_dl/utils.py", line 494, in unescapeHTML assert type(s) == type(u'') AssertionError The patch allows me to use: try: info['description'] = self._og_search_description(webpage) info['thumbnail'] = self._og_search_thumbnail(webpage) except RegexNotFoundError: pass | |||||
* | Add the 'webpage_url' field to info_dict | Jaime Marquínez Ferrándiz | 2013-11-03 | 1 | -0/+3 | |
| | | | | | The url for the video page, it must allow to reproduce the result. It's automatically set by YoutubeDL if it's missing. | |||||
* | Remove superfluous space | Philipp Hagemeister | 2013-10-30 | 1 | -1/+1 | |
| | ||||||
* | Merge remote-tracking branch 'origin/master' | Philipp Hagemeister | 2013-10-28 | 1 | -4/+4 | |
|\ | ||||||
| * | [Instagram] get the non-https link, as they are serving Akamai cert from a ↵ | Filippo Valsorda | 2013-10-28 | 1 | -4/+4 | |
| | | | | | | | | instagram.com domain | |||||
* | | New debug option --write-pages | Philipp Hagemeister | 2013-10-28 | 1 | -0/+12 | |
|/ | ||||||
* | [vimeo] Fix pro videos and player.vimeo.com urls | Jaime Marquínez Ferrándiz | 2013-10-23 | 1 | -2/+3 | |
| | | | | | The old process can still be used for those videos. Added RegexNotFoundError, which is raised by _search_regex if it can't extract the info. | |||||
* | The 'format' field now defaults to '{format_id} - {width}x{height}{format_note}' | Jaime Marquínez Ferrándiz | 2013-10-21 | 1 | -1/+4 | |
| | | | | Following the YoutubeIE format. The 'format_note' gives additional info about the format, for example '3D' or 'DASH video'. | |||||
* | fix typos | Philipp Hagemeister | 2013-10-18 | 1 | -1/+1 | |
| | ||||||
* | Allow users to specify an age limit (fixes #1545) | Philipp Hagemeister | 2013-10-06 | 1 | -0/+10 | |
| | | | | | With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS . Add rudimentary support in youtube, pornotube, and youporn. | |||||
* | Clarify that url and ext are optional when formats is given (#980) | Philipp Hagemeister | 2013-10-04 | 1 | -0/+2 | |
| | ||||||
* | Document formats (for #980) | Philipp Hagemeister | 2013-10-04 | 1 | -2/+13 | |
| | ||||||
* | Fix detection of the webpage charset if it's declared using ' instead of " | Jaime Marquínez Ferrándiz | 2013-08-29 | 1 | -1/+1 | |
| | | | | Like in "<meta charset='utf-8'/>" | |||||
* | [sohu] Handle encoding, and fix tests | Philipp Hagemeister | 2013-08-28 | 1 | -2/+7 | |
| | ||||||
* | Merge remote-tracking branch 'origin/reuse_ies' | Philipp Hagemeister | 2013-08-28 | 1 | -0/+5 | |
|\ | ||||||
| * | YoutubeIE: reuse instances of InfoExtractors (closes #998) | Jaime Marquínez Ferrándiz | 2013-07-08 | 1 | -0/+5 | |
| | | | | | | | | | | | | 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. | |||||
* | | [addanime] improve | Philipp Hagemeister | 2013-08-28 | 1 | -1/+1 | |
|\ \ | ||||||
* \ \ | Merge pull request #937 from jaimeMF/subtitles_rework | Jaime Marquínez Ferrándiz | 2013-08-23 | 1 | -1/+2 | |
|\ \ \ | | | | | | | | | Subtitles rework | |||||
| * | | | Use a dictionary for storing the subtitles | Jaime Marquínez Ferrándiz | 2013-07-20 | 1 | -1/+2 | |
| |/ / | | | | | | | | | | The errors while getting the subtitles are reported as warnings, if no subtitles are found return and empty dict. | |||||
* / / | Cache suitable regular expressions | Philipp Hagemeister | 2013-08-21 | 1 | -1/+7 | |
|/ / | | | | | | | This speeds up TestAllURLsMatching.test_no_duplicates by about 8000% at the cost of minimal memory overhead. | |||||
* | | Use unescapeHTML for OpenGraph properties | Philipp Hagemeister | 2013-07-17 | 1 | -1/+3 | |
| | | | | | | | | These are attribute values, so we don't need the more complex and whitespace-destroying cleanHTML - we just need to unescape quotes, that's it. | |||||
* | | Strip hash info from URL when making requests (Fixes #1038) | Philipp Hagemeister | 2013-07-13 | 1 | -0/+5 | |
| | | ||||||
* | | Improve OpenGraph property matching | Philipp Hagemeister | 2013-07-13 | 1 | -6/+6 | |
| | | ||||||
* | | Use re.DOTALL by default when searching OpenGraph properties | Jaime Marquínez Ferrándiz | 2013-07-13 | 1 | -1/+1 | |
| | | ||||||
* | | InfoExtractor: add some helper methods to extract OpenGraph info | Jaime Marquínez Ferrándiz | 2013-07-12 | 1 | -0/+24 | |
| | | ||||||
* | | Remove video_result helper method | Philipp Hagemeister | 2013-07-11 | 1 | -5/+0 | |
|/ | | | | Calling it was more complex then actually including the type in the video info | |||||
* | Merge branch 'master' of github.com:rg3/youtube-dl | Philipp Hagemeister | 2013-07-08 | 1 | -0/+35 | |
|\ | ||||||
| * | VimeoIE: authentication support (closes #885) and add a method in the base ↵ | Jaime Marquínez Ferrándiz | 2013-07-07 | 1 | -0/+35 | |
| | | | | | | | | InfoExtractor to get the login info | |||||
* | | [3sat] Add support (Fixes #1001) | Philipp Hagemeister | 2013-07-08 | 1 | -0/+2 | |
|/ | ||||||
* | Add --list-extractor-descriptions (human-readable list of IEs) | Philipp Hagemeister | 2013-07-01 | 1 | -0/+4 | |
| | ||||||
* | Document view_count (Closes #963) | Philipp Hagemeister | 2013-06-29 | 1 | -0/+1 | |
| |