]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/bfi.py
   2 from __future__ 
import unicode_literals
 
   6 from .common 
import InfoExtractor
 
   7 from ..utils 
import extract_attributes
 
  10 class BFIPlayerIE(InfoExtractor
): 
  11     IE_NAME 
= 'bfi:player' 
  12     _VALID_URL 
= r
'https?://player\.bfi\.org\.uk/[^/]+/film/watch-(?P<id>[\w-]+)-online' 
  14         'url': 'https://player.bfi.org.uk/free/film/watch-computer-doctor-1974-online', 
  15         'md5': 'e8783ebd8e061ec4bc6e9501ed547de8', 
  17             'id': 'htNnhlZjE60C9VySkQEIBtU-cNV1Xx63', 
  19             'title': 'Computer Doctor', 
  20             'description': 'md5:fb6c240d40c4dbe40428bdd62f78203b', 
  22         'skip': 'BFI Player films cannot be played outside of the UK', 
  25     def _real_extract(self
, url
): 
  26         video_id 
= self
._match
_id
(url
) 
  27         webpage 
= self
._download
_webpage
(url
, video_id
) 
  29         for player_el 
in re
.findall(r
'(?s)<[^>]+class="player"[^>]*>', webpage
): 
  30             player_attr 
= extract_attributes(player_el
) 
  31             ooyala_id 
= player_attr
.get('data-video-id') 
  34             entries
.append(self
.url_result( 
  35                 'ooyala:' + ooyala_id
, 'Ooyala', 
  36                 ooyala_id
, player_attr
.get('data-label'))) 
  37         return self
.playlist_result(entries
)