summaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/brightcove.py
Commit message (Collapse)AuthorAgeFilesLines
...
* [brightcove] Add support for videoId= in og:video meta (Fixes #3571)Philipp Hagemeister2014-08-241-2/+4
|
* [brightcove] Detect geoblockingPhilipp Hagemeister2014-08-241-0/+7
|
* [brightcove] Add a truncated URL warning message (#3571)Philipp Hagemeister2014-08-241-1/+5
|
* [brightcove] Set the filesize of the formats and use _sort_formatsJaime Marquínez Ferrándiz2014-06-151-1/+3
|
* [brightcove] Modernize some testsJaime Marquínez Ferrándiz2014-06-151-2/+4
|
* [brightcove] Add support for renditions with 'remote' set to True (fixes #3081)Jaime Marquínez Ferrándiz2014-06-151-6/+32
| | | | The url needs to be modified to get the flv video.
* [brightcove] Improve the 'experienceJSON' regex (#3081)Jaime Marquínez Ferrándiz2014-06-151-1/+1
| | | | One of the strings may contain ';', we would get an invalid json string.
* [brightcove] Only use url from meta element if it has the 'playerKey' field ↵Jaime Marquínez Ferrándiz2014-04-121-1/+5
| | | | (fixes #2738)
* [brightcove] Encode object_str with utf-8Sergey M․2014-04-011-1/+1
|
* [brightcove] Unescape html entities from the 'og:video' url property (fixes ↵Jaime Marquínez Ferrándiz2014-02-101-1/+2
| | | | #2360)
* [generic] Add support for multiple brightcove URLs (Fixes #2283)Philipp Hagemeister2014-02-031-8/+11
|
* [brightcove] Move test to genericPhilipp Hagemeister2014-01-281-11/+0
|
* [brightcove] Parse URL from meta element if available (Fixes #2253)Philipp Hagemeister2014-01-281-3/+19
|
* [nowness] Add supportPhilipp Hagemeister2014-01-231-1/+1
|
* [brightcove] Fix extraction of embedded videosJaime Marquínez Ferrándiz2014-01-211-4/+7
| | | | | There was a leading ‘:’ in the regex. The ‘flashvars’ parameter is not always available.
* [brightcove] Fix check for url in the resultJaime Marquínez Ferrándiz2014-01-211-1/+1
| | | | It may have the ‘formats’ field instead of ‘url’.
* [servingsys] Add supportPhilipp Hagemeister2014-01-211-7/+44
| | | | | This also adds support for brightcove advertisements. Fixes #2181
* [brightcove] The ‘id’ attribute is not always present in the object tag ↵Jaime Marquínez Ferrándiz2014-01-101-3/+3
| | | | | | (fixes #2132) It looks like the ‘flashId’ parameter is not needed.
* Use original Referer URL in Brightcove requests (Fixes #2110)Philipp Hagemeister2014-01-071-3/+7
|
* [brightcove] Use unicode_literalsPhilipp Hagemeister2014-01-071-33/+34
|
* [brightcove] Test checksum changedPhilipp Hagemeister2013-12-201-1/+1
|
* Remove superfluous spacesPhilipp Hagemeister2013-12-091-1/+1
|
* [brightcove] Use the original url (usually the player) as the default ↵Jaime Marquínez Ferrándiz2013-12-091-3/+19
| | | | referer (fixes #1929)
* [brightcove] Don't use 'or' with the xml nodes, use the 'value' attribute ↵Jaime Marquínez Ferrándiz2013-11-241-4/+7
| | | | instead
* [brightcove] Set the 'videoPlayer' value to the 'videoId' if it's missing in ↵Jaime Marquínez Ferrándiz2013-11-231-3/+6
| | | | the parameters (fixes #1815)
* [brightcove] Set the 'Referer' header if the url has the 'linkBaseUrl' ↵Jaime Marquínez Ferrándiz2013-11-071-4/+13
| | | | parameter (fixes #1553)
* [brightcove] Support redirected urls from bcove.me (fixes #1732)Jaime Marquínez Ferrándiz2013-11-061-2/+4
| | | | 'bctid' needs to be changed to '@videoPlayer', and 'bckey' to 'playerKey'.
* [brightcove] Extract all the available formatsJaime Marquínez Ferrándiz2013-11-061-4/+5
|
* [brightcove] Change the 'videoId' or 'videoID' field to '@videoPlayer' ↵Jaime Marquínez Ferrándiz2013-11-061-0/+13
| | | | | | (fixes #1697) It seems to be needed when using the htmlFederated page
* [brightcove] Add the extraction of the url from genericJaime Marquínez Ferrándiz2013-11-061-1/+15
|
* [brightcove] Don't set the extensionJaime Marquínez Ferrándiz2013-11-021-3/+1
| | | | If the video only has the 'FLVFullLengthURL' key, it can still be an mp4 file.
* [brightcove] Raise error if playlist is empty (#1608)Philipp Hagemeister2013-10-171-1/+4
|
* [brightcove] Fix more broken XML (#1608)Philipp Hagemeister2013-10-171-0/+2
|
* [brightcove] Fix up some broken HTML (#1553)Philipp Hagemeister2013-10-041-0/+5
|
* [brightcove] Use direct url for the testsJaime Marquínez Ferrándiz2013-09-261-2/+4
| | | | The test_all_urls.py test failed because BrightcoveIE doesn't match them.
* [brightcove] Support videos that only provide flv versions (fixes #1504)Jaime Marquínez Ferrándiz2013-09-261-13/+49
| | | | Moved the test from generic.py to brightcove.py
* BrightcoveIE: Use parse_qs to extract the fields of the query (closes #1032)Jaime Marquínez Ferrándiz2013-07-121-7/+8
| | | | Add a compat_urlparse to utils.
* [brightcove] add importPhilipp Hagemeister2013-07-111-0/+1
|
* [brightcove] fix on Python 2.6Philipp Hagemeister2013-07-111-3/+3
|
* GenericIE: detect more Brightcove videosJaime Marquínez Ferrándiz2013-07-111-1/+1
| | | | In some sites "class" contains more that BrightcoveExperience
* BrightcoveIE: add support for playlistsJaime Marquínez Ferrándiz2013-07-111-5/+30
|
* GenericIE: Detect videos from BrightcoveJaime Marquínez Ferrándiz2013-07-101-1/+28
| | | | 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.
* Add BrightcoveIE (closes #832)Jaime Marquínez Ferrándiz2013-07-051-0/+32
It only accepts the urls that are use for embedding the video, it doesn't search in generic webpages to find Brightcove videos