| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     js_to_json, | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |     parse_iso8601, | 
					
						
							|  |  |  |     remove_end, | 
					
						
							| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ClipfishIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?clipfish\.de/(?:[^/]+/)+video/(?P<id>[0-9]+)' | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  |         'url': 'http://www.clipfish.de/special/game-trailer/video/3966754/fifa-14-e3-2013-trailer/', | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         'md5': '79bc922f3e8a9097b3d68a93780fd475', | 
					
						
							| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3966754', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'FIFA 14 - E3 2013 Trailer', | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |             'timestamp': 1370938118, | 
					
						
							|  |  |  |             'upload_date': '20130611', | 
					
						
							| 
									
										
										
										
											2014-03-24 22:30:32 +01:00
										 |  |  |             'duration': 82, | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         video_info = self._parse_json( | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |             js_to_json(self._html_search_regex( | 
					
						
							|  |  |  |                 '(?s)videoObject\s*=\s*({.+?});', webpage, 'video object')), | 
					
						
							|  |  |  |             video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for video_url in re.findall(r'var\s+videourl\s*=\s*"([^"]+)"', webpage): | 
					
						
							|  |  |  |             ext = determine_ext(video_url) | 
					
						
							|  |  |  |             if ext == 'm3u8': | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							|  |  |  |                     'url': video_url.replace('de.hls.fra.clipfish.de', 'hls.fra.clipfish.de'), | 
					
						
							|  |  |  |                     'ext': 'mp4', | 
					
						
							|  |  |  |                     'format_id': 'hls', | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							|  |  |  |                     'url': video_url, | 
					
						
							|  |  |  |                     'format_id': ext, | 
					
						
							|  |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |         title = remove_end(self._og_search_title(webpage), ' - Video') | 
					
						
							|  |  |  |         thumbnail = self._og_search_thumbnail(webpage) | 
					
						
							|  |  |  |         duration = int_or_none(video_info.get('length')) | 
					
						
							|  |  |  |         timestamp = parse_iso8601(self._html_search_meta('uploadDate', webpage, 'upload date')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2015-07-24 12:00:20 +01:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							| 
									
										
										
										
											2015-08-08 01:10:41 +06:00
										 |  |  |             'timestamp': timestamp, | 
					
						
							| 
									
										
										
										
											2013-11-24 07:51:44 +01:00
										 |  |  |         } |