aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/lci.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-06 20:47:42 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-06 20:47:42 +0100
commit8258f4457ce37fd24fb6044b5948f1816fcf3b94 (patch)
tree2e4a7bc27aba4c618a7501fa2d920fdcebb012ee /youtube_dl/extractor/lci.py
parent948cd5b72d6d3f8a8b70717de50f7f58c260e65b (diff)
downloadyoutube-dl-8258f4457ce37fd24fb6044b5948f1816fcf3b94.zip
youtube-dl-8258f4457ce37fd24fb6044b5948f1816fcf3b94.tar.gz
youtube-dl-8258f4457ce37fd24fb6044b5948f1816fcf3b94.tar.bz2
[lci] Add new extractor(closes #10573)
Diffstat (limited to 'youtube_dl/extractor/lci.py')
-rw-r--r--youtube_dl/extractor/lci.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/youtube_dl/extractor/lci.py b/youtube_dl/extractor/lci.py
new file mode 100644
index 0000000..af34829
--- /dev/null
+++ b/youtube_dl/extractor/lci.py
@@ -0,0 +1,24 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+
+class LCIIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?lci\.fr/[^/]+/[\w-]+-(?P<id>\d+)\.html'
+ _TEST = {
+ 'url': 'http://www.lci.fr/international/etats-unis-a-j-62-hillary-clinton-reste-sans-voix-2001679.html',
+ 'md5': '2fdb2538b884d4d695f9bd2bde137e6c',
+ 'info_dict': {
+ 'id': '13244802',
+ 'ext': 'mp4',
+ 'title': 'Hillary Clinton et sa quinte de toux, en plein meeting',
+ 'description': 'md5:a4363e3a960860132f8124b62f4a01c9',
+ }
+ }
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+ webpage = self._download_webpage(url, video_id)
+ wat_id = self._search_regex(r'data-watid=[\'"](\d+)', webpage, 'wat id')
+ return self.url_result('wat:' + wat_id, 'Wat', wat_id)