]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/lci.py
   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
(r
'data-watid=[\'"](\d+)', webpage, 'wat id') 
  24         return self.url_result('wat:' + wat_id, 'Wat', wat_id)