]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vidzi.py
   2 from __future__ 
import unicode_literals
 
   4 from .common 
import InfoExtractor
 
   5 from ..utils 
import smuggle_url
 
   8 class VidziIE(InfoExtractor
): 
   9     _VALID_URL 
= r
'https?://(?:www\.)?vidzi\.tv/(?P<id>\w+)' 
  11         'url': 'http://vidzi.tv/cghql9yq6emu.html', 
  12         'md5': '4f16c71ca0c8c8635ab6932b5f3f1660', 
  16             'title': 'youtube-dl test video  1\\\\2\'3/4<5\\\\6ä7↭', 
  17             'uploader': 'vidzi.tv', 
  21             'skip_download': True, 
  25     def _real_extract(self
, url
): 
  26         video_id 
= self
._match
_id
(url
) 
  28         webpage 
= self
._download
_webpage
(url
, video_id
) 
  29         title 
= self
._html
_search
_regex
( 
  30             r
'(?s)<h2 class="video-title">(.*?)</h2>', webpage
, 'title') 
  32         # Vidzi now uses jwplayer, which can be handled by GenericIE 
  34             '_type': 'url_transparent', 
  37             'url': smuggle_url(url
, {'to_generic': True}),