2 from __future__ import unicode_literals
4 from .common import InfoExtractor
7 class LCIIE(InfoExtractor):
8 _VALID_URL = r'https?://(?:www\.)?lci\.fr/[^/]+/[\w-]+-(?P<id>\d+)\.html'
10 'url': 'http://www.lci.fr/international/etats-unis-a-j-62-hillary-clinton-reste-sans-voix-2001679.html',
11 'md5': '2fdb2538b884d4d695f9bd2bde137e6c',
15 'title': 'Hillary Clinton et sa quinte de toux, en plein meeting',
16 'description': 'md5:a4363e3a960860132f8124b62f4a01c9',
20 def _real_extract(self, url):
21 video_id = self._match_id(url)
22 webpage = self._download_webpage(url, video_id)
23 wat_id = self._search_regex(
24 (r'data-watid=[\'"](\d+)', r'idwat["\']?\s*:\s*["\']?(\d+)'),
26 return self.url_result('wat:' + wat_id, 'Wat', wat_id)