| 
									
										
										
										
											2014-12-06 23:01:52 +06:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RadioDeIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_NAME = 'radio.de' | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?P<id>.+?)\.(?:radio\.(?:de|at|fr|pt|es|pl|it)|rad\.io)' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://ndr2.radio.de/', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ndr2', | 
					
						
							|  |  |  |             'ext': 'mp3', | 
					
						
							|  |  |  |             'title': 're:^NDR 2 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', | 
					
						
							|  |  |  |             'description': 'md5:591c49c702db1a33751625ebfb67f273', | 
					
						
							|  |  |  |             'thumbnail': 're:^https?://.*\.png', | 
					
						
							| 
									
										
										
										
											2015-02-17 19:54:04 +01:00
										 |  |  |             'is_live': True, | 
					
						
							| 
									
										
										
										
											2014-12-06 23:01:52 +06:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         radio_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, radio_id) | 
					
						
							| 
									
										
										
										
											2015-02-17 19:54:04 +01:00
										 |  |  |         jscode = self._search_regex( | 
					
						
							|  |  |  |             r"'components/station/stationService':\s*\{\s*'?station'?:\s*(\{.*?\s*\}),\n", | 
					
						
							|  |  |  |             webpage, 'broadcast') | 
					
						
							| 
									
										
										
										
											2014-12-06 23:01:52 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-17 19:54:04 +01:00
										 |  |  |         broadcast = self._parse_json(jscode, radio_id) | 
					
						
							| 
									
										
										
										
											2014-12-06 23:01:52 +06:00
										 |  |  |         title = self._live_title(broadcast['name']) | 
					
						
							|  |  |  |         description = broadcast.get('description') or broadcast.get('shortDescription') | 
					
						
							| 
									
										
										
										
											2015-02-17 19:54:04 +01:00
										 |  |  |         thumbnail = broadcast.get('picture4Url') or broadcast.get('picture4TransUrl') or broadcast.get('logo100x100') | 
					
						
							| 
									
										
										
										
											2014-12-06 23:01:52 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         formats = [{ | 
					
						
							|  |  |  |             'url': stream['streamUrl'], | 
					
						
							|  |  |  |             'ext': stream['streamContentFormat'].lower(), | 
					
						
							|  |  |  |             'acodec': stream['streamContentFormat'], | 
					
						
							|  |  |  |             'abr': stream['bitRate'], | 
					
						
							|  |  |  |             'asr': stream['sampleRate'] | 
					
						
							|  |  |  |         } for stream in broadcast['streamUrls']] | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': radio_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'is_live': True, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } |