aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/generic.py
AgeCommit message (Collapse)Author
2013-10-11Fix Brightcove detection when another Flash object is on the pageJoey Adams
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/
2013-10-06[generic] Clarify error messagesPhilipp Hagemeister
2013-09-26[brightcove] Support videos that only provide flv versions (fixes #1504)Jaime Marquínez Ferrándiz
Moved the test from generic.py to brightcove.py
2013-09-06[generic] If the url doesn't specify the protocol, then try to extract ↵Jaime Marquínez Ferrándiz
prepending 'http://'
2013-09-05[generic] Recognize html5 video in the format '<video src=".+?"' and only ↵Jaime Marquínez Ferrándiz
unquote the url when extracting the id (fixes #1372)
2013-08-28[generic] simply use urljoinPhilipp Hagemeister
2013-08-28[generic] Fix URL concatenationPhilipp Hagemeister
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.
2013-08-26[generic] small typoPhilipp Hagemeister
2013-08-24[generic] add support for relative URLs (Fixes #1308)Philipp Hagemeister
2013-08-24[generic] Support double slash URLs (Fixes #1309)Philipp Hagemeister
2013-08-21[generic] support HTML5 videoPhilipp Hagemeister
2013-08-21[generic] Ignore stupid HTTP servers (#1284)Philipp Hagemeister
2013-07-12GenericIE: allow to match declaration of the Brightocove parameters that use ↵Jaime Marquínez Ferrándiz
' instead of "
2013-07-11GenericIE: detect more Brightcove videosJaime Marquínez Ferrándiz
In some sites "class" contains more that BrightcoveExperience
2013-07-10GenericIE: Detect videos from BrightcoveJaime Marquínez Ferrándiz
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.
2013-07-01GenericIE: match titles that spread across multiple lines (related #904)Jaime Marquínez Ferrándiz
2013-07-01Add --list-extractor-descriptions (human-readable list of IEs)Philipp Hagemeister
2013-06-27Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister
2013-06-27Move tests to the IE definitionsPhilipp Hagemeister
2013-06-27Made 'video' the default title for generic IEAlbert Kim
2013-06-27Made generic IE handle more casesAlbert Kim
Added a possible quote after file, so it can now handle cases like: 'file': 'http://www.a.com/b.mp4'
2013-06-23Move GenericIE into its own filePhilipp Hagemeister