| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     unified_strdate, | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |     parse_duration, | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |     qualities, | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class NPOIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_NAME = 'npo.nl' | 
					
						
							|  |  |  |     _VALID_URL = r'https?://www\.npo\.nl/[^/]+/[^/]+/(?P<id>[^/?]+)' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.npo.nl/nieuwsuur/22-06-2014/VPWON_1220719', | 
					
						
							|  |  |  |             'md5': '4b3f9c429157ec4775f2c9cb7b911016', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': 'VPWON_1220719', | 
					
						
							|  |  |  |                 'ext': 'm4v', | 
					
						
							|  |  |  |                 'title': 'Nieuwsuur', | 
					
						
							|  |  |  |                 'description': 'Dagelijks tussen tien en elf: nieuws, sport en achtergronden.', | 
					
						
							|  |  |  |                 'upload_date': '20140622', | 
					
						
							|  |  |  |             }, | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.npo.nl/de-mega-mike-mega-thomas-show/27-02-2009/VARA_101191800', | 
					
						
							|  |  |  |             'md5': 'da50a5787dbfc1603c4ad80f31c5120b', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': 'VARA_101191800', | 
					
						
							|  |  |  |                 'ext': 'm4v', | 
					
						
							|  |  |  |                 'title': 'De Mega Mike & Mega Thomas show', | 
					
						
							|  |  |  |                 'description': 'md5:3b74c97fc9d6901d5a665aac0e5400f4', | 
					
						
							|  |  |  |                 'upload_date': '20090227', | 
					
						
							|  |  |  |                 'duration': 2400, | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.npo.nl/tegenlicht/25-02-2013/VPWON_1169289', | 
					
						
							|  |  |  |             'md5': 'f8065e4e5a7824068ed3c7e783178f2c', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': 'VPWON_1169289', | 
					
						
							|  |  |  |                 'ext': 'm4v', | 
					
						
							|  |  |  |                 'title': 'Tegenlicht', | 
					
						
							|  |  |  |                 'description': 'md5:d6476bceb17a8c103c76c3b708f05dd1', | 
					
						
							|  |  |  |                 'upload_date': '20130225', | 
					
						
							|  |  |  |                 'duration': 3000, | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         metadata = self._download_json( | 
					
						
							|  |  |  |             'http://e.omroep.nl/metadata/aflevering/%s' % video_id, | 
					
						
							|  |  |  |             video_id, | 
					
						
							|  |  |  |             # We have to remove the javascript callback | 
					
						
							| 
									
										
										
										
											2014-07-17 22:29:03 +02:00
										 |  |  |             transform_source=lambda j: re.sub(r'parseMetadata\((.*?)\);\n//.*$', r'\1', j) | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  |         ) | 
					
						
							|  |  |  |         token_page = self._download_webpage( | 
					
						
							|  |  |  |             'http://ida.omroep.nl/npoplayer/i.js', | 
					
						
							|  |  |  |             video_id, | 
					
						
							|  |  |  |             note='Downloading token' | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |         token = self._search_regex(r'npoplayer\.token = "(.+?)"', token_page, 'token') | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |         quality = qualities(['adaptive', 'wmv_sb', 'h264_sb', 'wmv_bb', 'h264_bb', 'wvc1_std', 'h264_std']) | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |         for format_id in metadata['pubopties']: | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |             format_info = self._download_json( | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |                 'http://ida.omroep.nl/odi/?prid=%s&puboptions=%s&adaptive=yes&token=%s' % (video_id, format_id, token), | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |                 video_id, 'Downloading %s JSON' % format_id) | 
					
						
							|  |  |  |             if format_info.get('error_code', 0) or format_info.get('errorcode', 0): | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             streams = format_info.get('streams') | 
					
						
							|  |  |  |             if streams: | 
					
						
							|  |  |  |                 video_info = self._download_json( | 
					
						
							|  |  |  |                     streams[0] + '&type=json', | 
					
						
							|  |  |  |                     video_id, 'Downloading %s stream JSON' % format_id) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 video_info = format_info | 
					
						
							|  |  |  |             video_url = video_info.get('url') | 
					
						
							|  |  |  |             if not video_url: | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |             if format_id == 'adaptive': | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |                 formats.extend(self._extract_m3u8_formats(video_url, video_id)) | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |                     'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |                     'format_id': format_id, | 
					
						
							|  |  |  |                     'quality': quality(format_id), | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': metadata['titel'], | 
					
						
							|  |  |  |             'description': metadata['info'], | 
					
						
							| 
									
										
										
										
											2014-09-17 19:02:57 +07:00
										 |  |  |             'thumbnail': metadata.get('images', [{'url': None}])[-1]['url'], | 
					
						
							|  |  |  |             'upload_date': unified_strdate(metadata.get('gidsdatum')), | 
					
						
							|  |  |  |             'duration': parse_duration(metadata.get('tijdsduur')), | 
					
						
							| 
									
										
										
										
											2014-09-01 20:13:32 +07:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2014-06-26 20:30:44 +02:00
										 |  |  |         } |