aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/aljazeera.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-15 19:38:10 +0100
committerremitamine <remitamine@gmail.com>2016-03-15 19:38:10 +0100
commitcb6e477dfe09b68a810e587269958b1e56077b00 (patch)
tree02ebf3316818425bada3683c26f5cf418f64278b /youtube_dl/extractor/aljazeera.py
parentedfd93518ea0a929dbdd51cc3472bddceaf96514 (diff)
downloadyoutube-dl-cb6e477dfe09b68a810e587269958b1e56077b00.zip
youtube-dl-cb6e477dfe09b68a810e587269958b1e56077b00.tar.gz
youtube-dl-cb6e477dfe09b68a810e587269958b1e56077b00.tar.bz2
[aljazeera] update the extractor to use BrightcoveNewIE
Diffstat (limited to 'youtube_dl/extractor/aljazeera.py')
-rw-r--r--youtube_dl/extractor/aljazeera.py18
1 files changed, 6 insertions, 12 deletions
diff --git a/youtube_dl/extractor/aljazeera.py b/youtube_dl/extractor/aljazeera.py
index 5b2c0dc..cddcaa4 100644
--- a/youtube_dl/extractor/aljazeera.py
+++ b/youtube_dl/extractor/aljazeera.py
@@ -13,24 +13,18 @@ class AlJazeeraIE(InfoExtractor):
'ext': 'mp4',
'title': 'The Slum - Episode 1: Deliverance',
'description': 'As a birth attendant advocating for family planning, Remy is on the frontline of Tondo\'s battle with overcrowding.',
- 'uploader': 'Al Jazeera English',
+ 'uploader_id': '665003303001',
+ 'timestamp': 1411116829,
+ 'upload_date': '20140919',
},
- 'add_ie': ['BrightcoveLegacy'],
+ 'add_ie': ['BrightcoveNew'],
'skip': 'Not accessible from Travis CI server',
}
+ BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/665003303001/default_default/index.html?videoId=%s'
def _real_extract(self, url):
program_name = self._match_id(url)
webpage = self._download_webpage(url, program_name)
brightcove_id = self._search_regex(
r'RenderPagesVideo\(\'(.+?)\'', webpage, 'brightcove id')
-
- return {
- '_type': 'url',
- 'url': (
- 'brightcove:'
- 'playerKey=AQ~~%2CAAAAmtVJIFk~%2CTVGOQ5ZTwJbeMWnq5d_H4MOM57xfzApc'
- '&%40videoPlayer={0}'.format(brightcove_id)
- ),
- 'ie_key': 'BrightcoveLegacy',
- }
+ return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)