| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							| 
									
										
										
										
											2016-01-01 15:41:52 +06:00
										 |  |  |     parse_duration, | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |     qualities, | 
					
						
							|  |  |  |     unified_strdate, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CCCIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_NAME = 'media.ccc.de' | 
					
						
							| 
									
										
										
										
											2016-01-01 15:14:41 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?media\.ccc\.de/v/(?P<id>[^/?#&]+)' | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-01 15:14:41 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'https://media.ccc.de/v/30C3_-_5443_-_en_-_saal_g_-_201312281830_-_introduction_to_processor_design_-_byterazor#video', | 
					
						
							| 
									
										
										
										
											2015-05-15 12:28:10 +01:00
										 |  |  |         'md5': '3a1eda8f3a29515d27f5adb967d7e740', | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-01-01 15:14:41 +06:00
										 |  |  |             'id': '30C3_-_5443_-_en_-_saal_g_-_201312281830_-_introduction_to_processor_design_-_byterazor', | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Introduction to Processor Design', | 
					
						
							| 
									
										
										
										
											2016-01-01 15:29:42 +06:00
										 |  |  |             'description': 'md5:80be298773966f66d56cb11260b879af', | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             'thumbnail': 're:^https?://.*\.jpg$', | 
					
						
							|  |  |  |             'view_count': int, | 
					
						
							| 
									
										
										
										
											2016-01-01 15:29:42 +06:00
										 |  |  |             'upload_date': '20131228', | 
					
						
							| 
									
										
										
										
											2016-01-01 15:41:52 +06:00
										 |  |  |             'duration': 3660, | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-01-01 15:14:41 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://media.ccc.de/v/32c3-7368-shopshifting#download', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self._downloader.params.get('prefer_free_formats'): | 
					
						
							|  |  |  |             preference = qualities(['mp3', 'opus', 'mp4-lq', 'webm-lq', 'h264-sd', 'mp4-sd', 'webm-sd', 'mp4', 'webm', 'mp4-hd', 'h264-hd', 'webm-hd']) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             preference = qualities(['opus', 'mp3', 'webm-lq', 'mp4-lq', 'webm-sd', 'h264-sd', 'mp4-sd', 'webm', 'mp4', 'webm-hd', 'mp4-hd', 'h264-hd']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'(?s)<h1>(.*?)</h1>', webpage, 'title') | 
					
						
							|  |  |  |         description = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2016-01-01 15:29:42 +06:00
										 |  |  |             r"(?s)<h3>About</h3>(.+?)<h3>", | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             webpage, 'description', fatal=False) | 
					
						
							|  |  |  |         upload_date = unified_strdate(self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2016-01-01 15:22:22 +06:00
										 |  |  |             r"(?s)<span[^>]+class='[^']*fa-calendar-o'[^>]*>(.+?)</span>", | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             webpage, 'upload date', fatal=False)) | 
					
						
							|  |  |  |         view_count = int_or_none(self._html_search_regex( | 
					
						
							|  |  |  |             r"(?s)<span class='[^']*fa-eye'></span>(.*?)</li>", | 
					
						
							|  |  |  |             webpage, 'view count', fatal=False)) | 
					
						
							| 
									
										
										
										
											2016-01-01 15:41:52 +06:00
										 |  |  |         duration = parse_duration(self._html_search_regex( | 
					
						
							|  |  |  |             r'(?s)<span[^>]+class=(["\']).*?fa-clock-o.*?\1[^>]*></span>(?P<duration>.+?)</li', | 
					
						
							|  |  |  |             webpage, 'duration', fatal=False, group='duration')) | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         matches = re.finditer(r'''(?xs)
 | 
					
						
							| 
									
										
										
										
											2016-01-01 13:28:45 +01:00
										 |  |  |             <(?:span|div)\s+class='label\s+filetype'>(?P<format>[^<]*)</(?:span|div)>\s* | 
					
						
							|  |  |  |             <(?:span|div)\s+class='label\s+filetype'>(?P<lang>[^<]*)</(?:span|div)>\s* | 
					
						
							| 
									
										
										
										
											2015-05-15 12:28:10 +01:00
										 |  |  |             <a\s+download\s+href='(?P<http_url>[^']+)'>\s* | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             (?: | 
					
						
							|  |  |  |                 .*? | 
					
						
							| 
									
										
										
										
											2016-01-01 13:28:45 +01:00
										 |  |  |                 <a\s+(?:download\s+)?href='(?P<torrent_url>[^']+\.torrent)' | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             )?''', webpage)
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for m in matches: | 
					
						
							|  |  |  |             format = m.group('format') | 
					
						
							|  |  |  |             format_id = self._search_regex( | 
					
						
							|  |  |  |                 r'.*/([a-z0-9_-]+)/[^/]*$', | 
					
						
							|  |  |  |                 m.group('http_url'), 'format id', default=None) | 
					
						
							| 
									
										
										
										
											2016-01-01 13:28:45 +01:00
										 |  |  |             if format_id: | 
					
						
							|  |  |  |                 format_id = m.group('lang') + '-' + format_id | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             vcodec = 'h264' if 'h264' in format_id else ( | 
					
						
							|  |  |  |                 'none' if format_id in ('mp3', 'opus') else None | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'format_id': format_id, | 
					
						
							|  |  |  |                 'format': format, | 
					
						
							| 
									
										
										
										
											2016-01-01 13:28:45 +01:00
										 |  |  |                 'language': m.group('lang'), | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |                 'url': m.group('http_url'), | 
					
						
							|  |  |  |                 'vcodec': vcodec, | 
					
						
							|  |  |  |                 'preference': preference(format_id), | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if m.group('torrent_url'): | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							|  |  |  |                     'format_id': 'torrent-%s' % (format if format_id is None else format_id), | 
					
						
							|  |  |  |                     'format': '%s (torrent)' % format, | 
					
						
							|  |  |  |                     'proto': 'torrent', | 
					
						
							|  |  |  |                     'format_note': '(unsupported; will just download the .torrent file)', | 
					
						
							|  |  |  |                     'vcodec': vcodec, | 
					
						
							|  |  |  |                     'preference': -100 + preference(format_id), | 
					
						
							|  |  |  |                     'url': m.group('torrent_url'), | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         thumbnail = self._html_search_regex( | 
					
						
							|  |  |  |             r"<video.*?poster='([^']+)'", webpage, 'thumbnail', fatal=False) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'view_count': view_count, | 
					
						
							|  |  |  |             'upload_date': upload_date, | 
					
						
							| 
									
										
										
										
											2016-01-01 15:41:52 +06:00
										 |  |  |             'duration': duration, | 
					
						
							| 
									
										
										
										
											2015-02-10 05:42:41 +01:00
										 |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } |