| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     float_or_none, | 
					
						
							|  |  |  |     parse_iso8601, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ClypIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?clyp\.it/(?P<id>[a-z0-9]+)' | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  |         'url': 'https://clyp.it/ojz2wfah', | 
					
						
							|  |  |  |         'md5': '1d4961036c41247ecfdcc439c0cddcbb', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ojz2wfah', | 
					
						
							|  |  |  |             'ext': 'mp3', | 
					
						
							|  |  |  |             'title': 'Krisson80 - bits wip wip', | 
					
						
							|  |  |  |             'description': '#Krisson80BitsWipWip #chiptune\n#wip', | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |             'duration': 263.21, | 
					
						
							|  |  |  |             'timestamp': 1443515251, | 
					
						
							|  |  |  |             'upload_date': '20150929', | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         audio_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |         metadata = self._download_json( | 
					
						
							|  |  |  |             'https://api.clyp.it/%s' % audio_id, audio_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for secure in ('', 'Secure'): | 
					
						
							|  |  |  |             for ext in ('Ogg', 'Mp3'): | 
					
						
							|  |  |  |                 format_id = '%s%s' % (secure, ext) | 
					
						
							|  |  |  |                 format_url = metadata.get('%sUrl' % format_id) | 
					
						
							|  |  |  |                 if format_url: | 
					
						
							|  |  |  |                     formats.append({ | 
					
						
							|  |  |  |                         'url': format_url, | 
					
						
							|  |  |  |                         'format_id': format_id, | 
					
						
							|  |  |  |                         'vcodec': 'none', | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |         title = metadata['Title'] | 
					
						
							|  |  |  |         description = metadata.get('Description') | 
					
						
							|  |  |  |         duration = float_or_none(metadata.get('Duration')) | 
					
						
							|  |  |  |         timestamp = parse_iso8601(metadata.get('DateCreated')) | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': audio_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							| 
									
										
										
										
											2015-10-28 21:42:01 +06:00
										 |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'timestamp': timestamp, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2015-10-16 01:23:09 +01:00
										 |  |  |         } |