]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/sbs.py
   1 # -*- coding: utf-8 -*- 
   2 from __future__ 
import unicode_literals
 
   4 from .common 
import InfoExtractor
 
   7 class SBSIE(InfoExtractor
): 
   9     _VALID_URL 
= r
'https?://(?:www\.)?sbs\.com\.au/(?:ondemand|news)/video/(?:single/)?(?P<id>[0-9]+)' 
  12         # Original URL is handled by the generic IE which finds the iframe: 
  13         # http://www.sbs.com.au/thefeed/blog/2014/08/21/dingo-conservation 
  14         'url': 'http://www.sbs.com.au/ondemand/video/single/320403011771/?source=drupal&vertical=thefeed', 
  15         'md5': '3150cf278965eeabb5b4cea1c963fe0a', 
  19             'title': 'Dingo Conservation (The Feed)', 
  20             'description': 'md5:f250a9856fca50d22dec0b5b8015f8a5', 
  21             'thumbnail': 're:http://.*\.jpg', 
  25         'url': 'http://www.sbs.com.au/ondemand/video/320403011771/Dingo-Conservation-The-Feed', 
  26         'only_matching': True, 
  28         'url': 'http://www.sbs.com.au/news/video/471395907773/The-Feed-July-9', 
  29         'only_matching': True, 
  32     def _real_extract(self
, url
): 
  33         video_id 
= self
._match
_id
(url
) 
  35         webpage 
= self
._download
_webpage
( 
  36             'http://www.sbs.com.au/ondemand/video/single/%s?context=web' % video_id
, video_id
) 
  38         player_params 
= self
._parse
_json
( 
  40                 r
'(?s)var\s+playerParams\s*=\s*({.+?});', webpage
, 'playerParams'), 
  43         urls 
= player_params
['releaseUrls'] 
  44         theplatform_url 
= (urls
.get('progressive') or urls
.get('standard') or 
  45                            urls
.get('html') or player_params
['relatedItemsURL']) 
  48             '_type': 'url_transparent', 
  50             'url': theplatform_url
,