Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | tests: don't run the test if any of the extractors listed in the 'add_ie' ↵ | Jaime Marquínez Ferrándiz | 2013-11-06 | 1 | -0/+2 | |
| | | | | field is marked as not working | |||||
* | [GenericIE] Also detect youtube if src url of iframe is embedded in ' ↵ | rzhxeo | 2013-11-05 | 1 | -2/+2 | |
| | | | | instaed of " | |||||
* | [generic] Detect bandcamp pages that use custom domains (closes #1662) | Jaime Marquínez Ferrándiz | 2013-10-27 | 1 | -1/+17 | |
| | | | | They embed the original url in the 'og:url' property. | |||||
* | [generic] Fix test video's checksum | Jaime Marquínez Ferrándiz | 2013-10-27 | 1 | -1/+1 | |
| | ||||||
* | Check for embedded YouTube player (Fixes #1616) | Philipp Hagemeister | 2013-10-18 | 1 | -1/+8 | |
| | ||||||
* | [generic] Support embedded vimeo videos (#1602) | Philipp Hagemeister | 2013-10-15 | 1 | -0/+21 | |
| | ||||||
* | Fix Brightcove detection when another Flash object is on the page | Joey Adams | 2013-10-11 | 1 | -1/+1 | |
| | | | | | | | | | | | The regex used non-greedy match, but alas it failed on input like this: <object class="...> ... class="BrightcoveExperience" It captured two objects and the intervening HTML. This commit fixes this by not allowing a ">" to appear before BrightcoveExperience. Video in question: http://www.harpercollinschildrens.com/feature/petethecat/ | |||||
* | [generic] Clarify error messages | Philipp Hagemeister | 2013-10-06 | 1 | -3/+3 | |
| | ||||||
* | [brightcove] Support videos that only provide flv versions (fixes #1504) | Jaime Marquínez Ferrándiz | 2013-09-26 | 1 | -11/+0 | |
| | | | | Moved the test from generic.py to brightcove.py | |||||
* | [generic] If the url doesn't specify the protocol, then try to extract ↵ | Jaime Marquínez Ferrándiz | 2013-09-06 | 1 | -0/+5 | |
| | | | | prepending 'http://' | |||||
* | [generic] Recognize html5 video in the format '<video src=".+?"' and only ↵ | Jaime Marquínez Ferrándiz | 2013-09-05 | 1 | -3/+3 | |
| | | | | unquote the url when extracting the id (fixes #1372) | |||||
* | [generic] simply use urljoin | Philipp Hagemeister | 2013-08-28 | 1 | -10/+2 | |
| | ||||||
* | [generic] Fix URL concatenation | Philipp Hagemeister | 2013-08-28 | 1 | -1/+6 | |
| | | | | | When the url is something like http://example.org/foo/bar?x=y and the added is file/video.mp4 , we want http://example.org/foo/file/video.mp4 Fixes #1268. | |||||
* | [generic] small typo | Philipp Hagemeister | 2013-08-26 | 1 | -1/+1 | |
| | ||||||
* | [generic] add support for relative URLs (Fixes #1308) | Philipp Hagemeister | 2013-08-24 | 1 | -0/+2 | |
| | ||||||
* | [generic] Support double slash URLs (Fixes #1309) | Philipp Hagemeister | 2013-08-24 | 1 | -1/+5 | |
| | ||||||
* | [generic] support HTML5 video | Philipp Hagemeister | 2013-08-21 | 1 | -0/+3 | |
| | ||||||
* | [generic] Ignore stupid HTTP servers (#1284) | Philipp Hagemeister | 2013-08-21 | 1 | -2/+7 | |
| | ||||||
* | GenericIE: allow to match declaration of the Brightocove parameters that use ↵ | Jaime Marquínez Ferrándiz | 2013-07-12 | 1 | -1/+1 | |
| | | | | ' instead of " | |||||
* | GenericIE: detect more Brightcove videos | Jaime Marquínez Ferrándiz | 2013-07-11 | 1 | -1/+1 | |
| | | | | In some sites "class" contains more that BrightcoveExperience | |||||
* | GenericIE: Detect videos from Brightcove | Jaime Marquínez Ferrándiz | 2013-07-10 | 1 | -9/+32 | |
| | | | | Brightcove videos info is usually found in an <object class="BrightcoveExperience"></object> node, this is passed to a new method of BrightcoveIE that builds a url to extract the video. | |||||
* | GenericIE: match titles that spread across multiple lines (related #904) | Jaime Marquínez Ferrándiz | 2013-07-01 | 1 | -1/+1 | |
| | ||||||
* | Add --list-extractor-descriptions (human-readable list of IEs) | Philipp Hagemeister | 2013-07-01 | 1 | -2/+1 | |
| | ||||||
* | Merge branch 'master' of github.com:rg3/youtube-dl | Philipp Hagemeister | 2013-06-27 | 1 | -2/+2 | |
|\ | ||||||
| * | Made 'video' the default title for generic IE | Albert Kim | 2013-06-27 | 1 | -1/+1 | |
| | | ||||||
| * | Made generic IE handle more cases | Albert Kim | 2013-06-27 | 1 | -1/+1 | |
| | | | | | | | | | | Added a possible quote after file, so it can now handle cases like: 'file': 'http://www.a.com/b.mp4' | |||||
* | | Move tests to the IE definitions | Philipp Hagemeister | 2013-06-27 | 1 | -0/+9 | |
|/ | ||||||
* | Move GenericIE into its own file | Philipp Hagemeister | 2013-06-23 | 1 | -0/+151 | |