| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 17:20:22 +01:00
										 |  |  | from .common import InfoExtractor, ExtractorError | 
					
						
							| 
									
										
										
										
											2014-06-28 17:36:13 +07:00
										 |  |  | from ..utils import parse_iso8601 | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 17:20:22 +01:00
										 |  |  | class DRTVIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-01-30 22:42:11 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dr\.dk/tv/se/(?:[^/]+/)*(?P<id>[\da-z-]+)(?:[/#?]|$)' | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://www.dr.dk/tv/se/partiets-mand/partiets-mand-7-8', | 
					
						
							|  |  |  |         'md5': '4a7e1dd65cdb2643500a3f753c942f25', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'partiets-mand-7-8', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Partiets mand (7:8)', | 
					
						
							|  |  |  |             'description': 'md5:a684b90a8f9336cd4aab94b7647d7862', | 
					
						
							|  |  |  |             'timestamp': 1403047940, | 
					
						
							|  |  |  |             'upload_date': '20140617', | 
					
						
							|  |  |  |             'duration': 1299.040, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-10-29 20:10:00 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-02 21:11:25 +06:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         video_id = self._search_regex( | 
					
						
							|  |  |  |             r'data-(?:material-identifier|episode-slug)="([^"]+)"', | 
					
						
							|  |  |  |             webpage, 'video id') | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-02 21:11:25 +06:00
										 |  |  |         programcard = self._download_json( | 
					
						
							|  |  |  |             'http://www.dr.dk/mu/programcard/expanded/%s' % video_id, | 
					
						
							|  |  |  |             video_id, 'Downloading video JSON') | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |         data = programcard['Data'][0] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = data['Title'] | 
					
						
							|  |  |  |         description = data['Description'] | 
					
						
							| 
									
										
										
										
											2014-10-29 20:10:00 +01:00
										 |  |  |         timestamp = parse_iso8601(data['CreatedTime']) | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         thumbnail = None | 
					
						
							|  |  |  |         duration = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         restricted_to_denmark = False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         subtitles = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for asset in data['Assets']: | 
					
						
							|  |  |  |             if asset['Kind'] == 'Image': | 
					
						
							|  |  |  |                 thumbnail = asset['Uri'] | 
					
						
							|  |  |  |             elif asset['Kind'] == 'VideoResource': | 
					
						
							|  |  |  |                 duration = asset['DurationInMilliseconds'] / 1000.0 | 
					
						
							|  |  |  |                 restricted_to_denmark = asset['RestrictedToDenmark'] | 
					
						
							| 
									
										
										
										
											2015-01-25 18:56:04 +01:00
										 |  |  |                 spoken_subtitles = asset['Target'] == 'SpokenSubtitles' | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |                 for link in asset['Links']: | 
					
						
							|  |  |  |                     target = link['Target'] | 
					
						
							|  |  |  |                     uri = link['Uri'] | 
					
						
							| 
									
										
										
										
											2015-01-25 18:56:04 +01:00
										 |  |  |                     format_id = target | 
					
						
							|  |  |  |                     preference = -1 if target == 'HDS' else -2 | 
					
						
							|  |  |  |                     if spoken_subtitles: | 
					
						
							|  |  |  |                         preference -= 2 | 
					
						
							|  |  |  |                         format_id += '-spoken-subtitles' | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |                     formats.append({ | 
					
						
							|  |  |  |                         'url': uri + '?hdcore=3.3.0&plugin=aasp-3.3.0.99.43' if target == 'HDS' else uri, | 
					
						
							| 
									
										
										
										
											2015-01-25 18:56:04 +01:00
										 |  |  |                         'format_id': format_id, | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |                         'ext': link['FileFormat'], | 
					
						
							| 
									
										
										
										
											2015-01-25 18:56:04 +01:00
										 |  |  |                         'preference': preference, | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |                     }) | 
					
						
							|  |  |  |                 subtitles_list = asset.get('SubtitlesList') | 
					
						
							|  |  |  |                 if isinstance(subtitles_list, list): | 
					
						
							|  |  |  |                     LANGS = { | 
					
						
							|  |  |  |                         'Danish': 'dk', | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     for subs in subtitles_list: | 
					
						
							|  |  |  |                         lang = subs['Language'] | 
					
						
							| 
									
										
										
										
											2015-02-18 17:20:22 +01:00
										 |  |  |                         subtitles[LANGS.get(lang, lang)] = [{'url': subs['Uri'], 'ext': 'vtt'}] | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not formats and restricted_to_denmark: | 
					
						
							|  |  |  |             raise ExtractorError( | 
					
						
							|  |  |  |                 'Unfortunately, DR is not allowed to show this program outside Denmark.', expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'timestamp': timestamp, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2015-02-18 17:20:22 +01:00
										 |  |  |             'subtitles': subtitles, | 
					
						
							| 
									
										
										
										
											2014-06-27 20:53:59 +07:00
										 |  |  |         } |