]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/spiegeltv.py
   2 from __future__ 
import unicode_literals
 
   5 from .common 
import InfoExtractor
 
   8 class SpiegeltvIE(InfoExtractor
): 
   9     _VALID_URL 
= r
'https?://(?:www\.)?spiegel\.tv/filme/(?P<id>[\-a-z0-9]+)' 
  11         'url': 'http://www.spiegel.tv/filme/flug-mh370/', 
  15             'title': 'Flug MH370', 
  16             'description': 'Das Rätsel um die Boeing 777 der Malaysia-Airlines', 
  17             'thumbnail': 're:http://.*\.jpg$', 
  21             'skip_download': True, 
  25     def _real_extract(self
, url
): 
  26         mobj 
= re
.match(self
._VALID
_URL
, url
) 
  27         video_id 
= mobj
.group('id') 
  29         webpage 
= self
._download
_webpage
(url
, video_id
) 
  30         title 
= self
._html
_search
_regex
(r
'<h1.*?>(.*?)</h1>', webpage
, 'title') 
  32         apihost 
= 'http://spiegeltv-ivms2-restapi.s3.amazonaws.com' 
  33         version_json 
= self
._download
_json
( 
  34             '%s/version.json' % apihost
, video_id
, 
  35             note
='Downloading version information') 
  36         version_name 
= version_json
['version_name'] 
  38         slug_json 
= self
._download
_json
( 
  39             '%s/%s/restapi/slugs/%s.json' % (apihost
, version_name
, video_id
), 
  41             note
='Downloading object information') 
  42         oid 
= slug_json
['object_id'] 
  44         media_json 
= self
._download
_json
( 
  45             '%s/%s/restapi/media/%s.json' % (apihost
, version_name
, oid
), 
  46             video_id
, note
='Downloading media information') 
  47         uuid 
= media_json
['uuid'] 
  48         is_wide 
= media_json
['is_wide'] 
  50         server_json 
= self
._download
_json
( 
  51             'http://www.spiegel.tv/streaming_servers/', video_id
, 
  52             note
='Downloading server information') 
  53         server 
= server_json
[0]['endpoint'] 
  56         for image 
in media_json
['images']: 
  59                 'width': image
['width'], 
  60                 'height': image
['height'], 
  63         description 
= media_json
['subtitle'] 
  64         duration 
= media_json
['duration_in_ms'] / 1000. 
  71         url 
= server 
+ 'mp4:' + uuid 
+ '_spiegeltv_0500_' + format 
+ '.m4v' 
  78             'description': description
, 
  80             'thumbnails': thumbnails