aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/rmcdecouverte.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-07 17:32:35 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-07 17:33:22 +0100
commit6656a8248166039d83a3fb4401a7e11e03202ac9 (patch)
tree1bdf7b49f844f06d0e269ff8274fe4ad4c050252 /youtube_dl/extractor/rmcdecouverte.py
parentd7e794928d1b1386a8f5960ce6ece3ae88d975a1 (diff)
downloadyoutube-dl-6656a8248166039d83a3fb4401a7e11e03202ac9.zip
youtube-dl-6656a8248166039d83a3fb4401a7e11e03202ac9.tar.gz
youtube-dl-6656a8248166039d83a3fb4401a7e11e03202ac9.tar.bz2
[rmcdecouverte] Add new extractor(closes #9709)
Diffstat (limited to 'youtube_dl/extractor/rmcdecouverte.py')
-rw-r--r--youtube_dl/extractor/rmcdecouverte.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/youtube_dl/extractor/rmcdecouverte.py b/youtube_dl/extractor/rmcdecouverte.py
new file mode 100644
index 0000000..f3bb4fa
--- /dev/null
+++ b/youtube_dl/extractor/rmcdecouverte.py
@@ -0,0 +1,39 @@
+# encoding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from .brightcove import BrightcoveLegacyIE
+from ..compat import (
+ compat_parse_qs,
+ compat_urlparse,
+)
+
+
+class RMCDecouverteIE(InfoExtractor):
+ _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/mediaplayer-replay.*?\bid=(?P<id>\d+)'
+
+ _TEST = {
+ 'url': 'http://rmcdecouverte.bfmtv.com/mediaplayer-replay/?id=1430&title=LES%20HEROS%20DU%2088e%20ETAGE',
+ 'info_dict': {
+ 'id': '5111223049001',
+ 'ext': 'mp4',
+ 'title': ': LES HEROS DU 88e ETAGE',
+ 'description': 'Découvrez comment la bravoure de deux hommes dans la Tour Nord du World Trade Center a sauvé la vie d\'innombrables personnes le 11 septembre 2001.',
+ 'uploader_id': '1969646226001',
+ 'upload_date': '20160904',
+ 'timestamp': 1472951103,
+ },
+ 'params': {
+ # rtmp download
+ 'skip_download': True,
+ },
+ 'skip': 'Only works from France',
+ }
+ BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1969646226001/default_default/index.html?videoId=%s'
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+ webpage = self._download_webpage(url, video_id)
+ brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
+ brightcove_id = compat_parse_qs(compat_urlparse.urlparse(brightcove_legacy_url).query)['@videoPlayer'][0]
+ return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)