summaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/brightcove.py
Commit message (Collapse)AuthorAgeFilesLines
...
* [brightcove:new] StyleSergey M․2015-11-141-2/+4
|
* [brightcove:new] Add test with rtmp streamsSergey M․2015-11-141-3/+21
|
* [brightcove:new] Fix testSergey M․2015-11-141-1/+1
|
* [brightcove] Order imports alphabeticallySergey M․2015-11-141-3/+3
|
* [brightcove] Remove unused importSergey M․2015-11-141-1/+0
|
* [brightcove] Fix _extract_urlsSergey M․2015-11-141-4/+5
|
* [brightcove] Clarify IE_NAMEsSergey M․2015-11-141-0/+2
|
* [brightcove:embedinpage] Rename extractor to brightcove newSergey M․2015-11-141-1/+1
| | | | It's not actually embed_in_page but "New Studio" and allows both iframe and embed_in_page embeds
* [brightcove] Rename extractor to brightcove legacySergey M․2015-11-141-1/+1
| | | | Old embedding approaches are now "Legacy Studio"
* [brightcove] Imrove extraction of new embedsSergey M․2015-11-141-13/+29
|
* [brightcove:embedinpage] Make more robust and extract rtmp streamsSergey M․2015-11-141-34/+75
|
* Merge branch 'brightcove_in_page_embed' of ↵Sergey M․2015-11-141-0/+95
|\ | | | | | | https://github.com/remitamine/youtube-dl into remitamine-brightcove_in_page_embed
| * [utils] change extract_attributes to work in python 2remitamine2015-10-311-2/+1
| |
| * [brightcove] fix test and fields extractionremitamine2015-09-301-6/+12
| |
| * [brightcove] fix streaming_src extractionremitamine2015-09-231-3/+1
| |
| * [brightcove] add support for brightcove in page embed(fixes #6824)remitamine2015-09-111-0/+92
| |
* | Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x (#7178)Jaime Marquínez Ferrándiz2015-10-251-2/+2
|/ | | | Attributes aren't unicode objects, so they couldn't be directly used in info_dict fields (for example '--write-description' doesn't work with bytes).
* [brightcove] Use `compat_xml_parse_error` (Closes #6060)Sergey M․2015-06-231-1/+2
|
* [brightcove] Improve and generalize brightcove URL extraction from JSSergey M․2015-06-131-10/+25
|
* Brightcove extractor: support customBC.createVideo(...); methodfnord2015-06-131-1/+13
| | | | | found in http://www.americanbar.org/groups/family_law.html and http://america.aljazeera.com/watch/shows/america-tonight/2015/6/exclusive-hunting-isil-with-the-pkk.html
* [brightcove] Allow single quotes in Brightcove URLs (fixes #5901)Yen Chi Hsuan2015-06-071-1/+1
|
* [brightcove] Always return lists from _extract_brightcove_urlsYen Chi Hsuan2015-04-161-1/+1
| | | | | | In Python 3, filter() returns an iterable object, which is equivalently to True even for an empty result set. It causes false positive playlists in generic extraction logic.
* [brightcove] Handle non well-formed XMLs (#5421)Sergey M․2015-04-141-2/+5
|
* [brightcove] Improve brightcove experience regex (Closes #5421)Sergey M․2015-04-141-1/+1
|
* [brightcove] Correct keys in playlistsPhilipp Hagemeister2015-02-181-1/+2
|
* [brightcove] Fix up more generically invalid XML (Fixes #4849)Philipp Hagemeister2015-02-021-1/+1
|
* [brightcove] Add shorter URL scheme for other extractorsPhilipp Hagemeister2014-12-161-1/+1
|
* Fix imports and general cleanupPhilipp Hagemeister2014-12-131-9/+10
| | | | | | | | · Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
* [brightcove] Make sure that the 'ext' variable is set (fixes #4360)Jaime Marquínez Ferrándiz2014-12-031-1/+2
|
* [brightcove] Improve error message detection (#4256)Jaime Marquínez Ferrándiz2014-11-201-1/+1
|
* [brightcove] Remove the namespace from the BrightcoveExperience html objectJaime Marquínez Ferrándiz2014-11-201-0/+2
|
* [brightcove] Extract m3u8 formats (#3541)Naglis Jonaitis2014-11-061-4/+11
|
* [brightcove] Make _VALID_URL less greedy and check for empty URLs (#3541)Naglis Jonaitis2014-11-031-1/+3
|
* [brightcove] Add a test for playlistsJaime Marquínez Ferrándiz2014-10-131-0/+9
|
* [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’.