]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/npo.py
175b14583efbad65d9fbb1777d14dbb5576c1cc1
   1 from __future__ 
import unicode_literals
 
   3 from .common 
import InfoExtractor
 
  14 class NPOBaseIE(InfoExtractor
): 
  15     def _get_token(self
, video_id
): 
  16         token_page 
= self
._download
_webpage
( 
  17             'http://ida.omroep.nl/npoplayer/i.js', 
  18             video_id
, note
='Downloading token') 
  19         return self
._search
_regex
( 
  20             r
'npoplayer\.token = "(.+?)"', token_page
, 'token') 
  23 class NPOIE(NPOBaseIE
): 
  25     _VALID_URL 
= r
'https?://www\.npo\.nl/[^/]+/[^/]+/(?P<id>[^/?]+)' 
  29             'url': 'http://www.npo.nl/nieuwsuur/22-06-2014/VPWON_1220719', 
  30             'md5': '4b3f9c429157ec4775f2c9cb7b911016', 
  32                 'id': 'VPWON_1220719', 
  35                 'description': 'Dagelijks tussen tien en elf: nieuws, sport en achtergronden.', 
  36                 'upload_date': '20140622', 
  40             'url': 'http://www.npo.nl/de-mega-mike-mega-thomas-show/27-02-2009/VARA_101191800', 
  41             'md5': 'da50a5787dbfc1603c4ad80f31c5120b', 
  43                 'id': 'VARA_101191800', 
  45                 'title': 'De Mega Mike & Mega Thomas show', 
  46                 'description': 'md5:3b74c97fc9d6901d5a665aac0e5400f4', 
  47                 'upload_date': '20090227', 
  52             'url': 'http://www.npo.nl/tegenlicht/25-02-2013/VPWON_1169289', 
  53             'md5': 'f8065e4e5a7824068ed3c7e783178f2c', 
  55                 'id': 'VPWON_1169289', 
  57                 'title': 'Tegenlicht', 
  58                 'description': 'md5:d6476bceb17a8c103c76c3b708f05dd1', 
  59                 'upload_date': '20130225', 
  64             'url': 'http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706', 
  66                 'id': 'WO_VPRO_043706', 
  68                 'title': 'De nieuwe mens - Deel 1', 
  69                 'description': 'md5:518ae51ba1293ffb80d8d8ce90b74e4b', 
  73                 # mplayer mms download 
  74                 'skip_download': True, 
  79             'url': 'http://www.npo.nl/hoe-gaat-europa-verder-na-parijs/10-01-2015/WO_NOS_762771', 
  80             'md5': 'b3da13de374cbe2d5332a7e910bef97f', 
  82                 'id': 'WO_NOS_762771', 
  84                 'title': 'Hoe gaat Europa verder na Parijs?', 
  89     def _real_extract(self
, url
): 
  90         video_id 
= self
._match
_id
(url
) 
  91         return self
._get
_info
(video_id
) 
  93     def _get_info(self
, video_id
): 
  94         metadata 
= self
._download
_json
( 
  95             'http://e.omroep.nl/metadata/aflevering/%s' % video_id
, 
  97             # We have to remove the javascript callback 
  98             transform_source
=strip_jsonp
, 
 101         token 
= self
._get
_token
(video_id
) 
 105         pubopties 
= metadata
.get('pubopties') 
 107             quality 
= qualities(['adaptive', 'wmv_sb', 'h264_sb', 'wmv_bb', 'h264_bb', 'wvc1_std', 'h264_std']) 
 108             for format_id 
in pubopties
: 
 109                 format_info 
= self
._download
_json
( 
 110                     'http://ida.omroep.nl/odi/?prid=%s&puboptions=%s&adaptive=yes&token=%s' 
 111                     % (video_id
, format_id
, token
), 
 112                     video_id
, 'Downloading %s JSON' % format_id
) 
 113                 if format_info
.get('error_code', 0) or format_info
.get('errorcode', 0): 
 115                 streams 
= format_info
.get('streams') 
 117                     video_info 
= self
._download
_json
( 
 118                         streams
[0] + '&type=json', 
 119                         video_id
, 'Downloading %s stream JSON' % format_id
) 
 121                     video_info 
= format_info
 
 122                 video_url 
= video_info
.get('url') 
 125                 if format_id 
== 'adaptive': 
 126                     formats
.extend(self
._extract
_m
3u8_formats
(video_url
, video_id
)) 
 130                         'format_id': format_id
, 
 131                         'quality': quality(format_id
), 
 134         streams 
= metadata
.get('streams') 
 136             for i
, stream 
in enumerate(streams
): 
 137                 stream_url 
= stream
.get('url') 
 140                 if '.asf' not in stream_url
: 
 143                         'quality': stream
.get('kwaliteit'), 
 146                 asx 
= self
._download
_xml
( 
 147                     stream_url
, video_id
, 
 148                     'Downloading stream %d ASX playlist' % i
, 
 149                     transform_source
=fix_xml_ampersands
) 
 150                 ref 
= asx
.find('./ENTRY/Ref') 
 153                 video_url 
= ref
.get('href') 
 158                     'ext': stream
.get('formaat', 'asf'), 
 159                     'quality': stream
.get('kwaliteit'), 
 162         self
._sort
_formats
(formats
) 
 166             'title': metadata
['titel'], 
 167             'description': metadata
['info'], 
 168             'thumbnail': metadata
.get('images', [{'url': None}])[-1]['url'], 
 169             'upload_date': unified_strdate(metadata
.get('gidsdatum')), 
 170             'duration': parse_duration(metadata
.get('tijdsduur')), 
 175 class NPOLiveIE(NPOBaseIE
): 
 176     IE_NAME 
= 'npo.nl:live' 
 177     _VALID_URL 
= r
'https?://www\.npo\.nl/live/(?P<id>.+)' 
 180         'url': 'http://www.npo.nl/live/npo-1', 
 182             'id': 'LI_NEDERLAND1_136692', 
 183             'display_id': 'npo-1', 
 185             'title': 're:^Nederland 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', 
 186             'description': 'Livestream', 
 190             'skip_download': True, 
 194     def _real_extract(self
, url
): 
 195         display_id 
= self
._match
_id
(url
) 
 197         webpage 
= self
._download
_webpage
(url
, display_id
) 
 199         live_id 
= self
._search
_regex
( 
 200             r
'data-prid="([^"]+)"', webpage
, 'live id') 
 202         metadata 
= self
._download
_json
( 
 203             'http://e.omroep.nl/metadata/%s' % live_id
, 
 204             display_id
, transform_source
=strip_jsonp
) 
 206         token 
= self
._get
_token
(display_id
) 
 210         streams 
= metadata
.get('streams') 
 212             for stream 
in streams
: 
 213                 stream_type 
= stream
.get('type').lower() 
 214                 if stream_type 
== 'ss': 
 216                 stream_info 
= self
._download
_json
( 
 217                     'http://ida.omroep.nl/aapi/?stream=%s&token=%s&type=jsonp' 
 218                     % (stream
.get('url'), token
), 
 219                     display_id
, 'Downloading %s JSON' % stream_type
) 
 220                 if stream_info
.get('error_code', 0) or stream_info
.get('errorcode', 0): 
 222                 stream_url 
= self
._download
_json
( 
 223                     stream_info
['stream'], display_id
, 
 224                     'Downloading %s URL' % stream_type
, 
 225                     transform_source
=strip_jsonp
) 
 226                 if stream_type 
== 'hds': 
 227                     f4m_formats 
= self
._extract
_f
4m
_formats
(stream_url
, display_id
) 
 228                     # f4m downloader downloads only piece of live stream 
 229                     for f4m_format 
in f4m_formats
: 
 230                         f4m_format
['preference'] = -1 
 231                     formats
.extend(f4m_formats
) 
 232                 elif stream_type 
== 'hls': 
 233                     formats
.extend(self
._extract
_m
3u8_formats
(stream_url
, display_id
, 'mp4')) 
 239         self
._sort
_formats
(formats
) 
 243             'display_id': display_id
, 
 244             'title': self
._live
_title
(metadata
['titel']), 
 245             'description': metadata
['info'], 
 246             'thumbnail': metadata
.get('images', [{'url': None}])[-1]['url'], 
 252 class TegenlichtVproIE(NPOIE
): 
 253     IE_NAME 
= 'tegenlicht.vpro.nl' 
 254     _VALID_URL 
= r
'https?://tegenlicht\.vpro\.nl/afleveringen/.*?' 
 258             'url': 'http://tegenlicht.vpro.nl/afleveringen/2012-2013/de-toekomst-komt-uit-afrika.html', 
 259             'md5': 'f8065e4e5a7824068ed3c7e783178f2c', 
 261                 'id': 'VPWON_1169289', 
 263                 'title': 'Tegenlicht', 
 264                 'description': 'md5:d6476bceb17a8c103c76c3b708f05dd1', 
 265                 'upload_date': '20130225', 
 270     def _real_extract(self
, url
): 
 271         name 
= url_basename(url
) 
 272         webpage 
= self
._download
_webpage
(url
, name
) 
 273         urn 
= self
._html
_search
_meta
('mediaurn', webpage
) 
 274         info_page 
= self
._download
_json
( 
 275             'http://rs.vpro.nl/v2/api/media/%s.json' % urn
, name
) 
 276         return self
._get
_info
(info_page
['mid'])