| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |     clean_html, | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MoeVideoIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-09-09 21:04:57 +07:00
										 |  |  |     IE_DESC = 'LetitBit video services: moevideo.net, playreplay.net and videochart.net' | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |     _VALID_URL = r'''(?x)
 | 
					
						
							|  |  |  |         https?://(?P<host>(?:www\.)? | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |         (?:(?:moevideo|playreplay|videochart)\.net|thesame\.tv))/ | 
					
						
							|  |  |  |         (?:video|framevideo|embed)/(?P<id>[0-9a-z]+\.[0-9A-Za-z]+)'''
 | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |     _API_URL = 'http://api.letitbit.net/' | 
					
						
							|  |  |  |     _API_KEY = 'tVL0gjqo5' | 
					
						
							|  |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://moevideo.net/video/00297.0036103fe3d513ef27915216fd29', | 
					
						
							|  |  |  |             'md5': '129f5ae1f6585d0e9bb4f38e774ffb3a', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '00297.0036103fe3d513ef27915216fd29', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': 'Sink cut out machine', | 
					
						
							|  |  |  |                 'description': 'md5:f29ff97b663aefa760bf7ca63c8ca8a8', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |                 'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |                 'width': 540, | 
					
						
							|  |  |  |                 'height': 360, | 
					
						
							|  |  |  |                 'duration': 179, | 
					
						
							| 
									
										
										
										
											2014-09-09 21:48:10 +07:00
										 |  |  |                 'filesize': 17822500, | 
					
						
							| 
									
										
										
										
											2016-09-07 22:21:26 +08:00
										 |  |  |             }, | 
					
						
							|  |  |  |             'skip': 'Video has been removed', | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://playreplay.net/video/77107.7f325710a627383d40540d8e991a', | 
					
						
							|  |  |  |             'md5': '74f0a014d5b661f0f0e2361300d1620e', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '77107.7f325710a627383d40540d8e991a', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': 'Operacion Condor.', | 
					
						
							|  |  |  |                 'description': 'md5:7e68cb2fcda66833d5081c542491a9a3', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |                 'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |                 'width': 480, | 
					
						
							|  |  |  |                 'height': 296, | 
					
						
							|  |  |  |                 'duration': 6027, | 
					
						
							| 
									
										
										
										
											2014-09-09 21:48:10 +07:00
										 |  |  |                 'filesize': 588257923, | 
					
						
							| 
									
										
										
										
											2015-01-01 00:46:03 +06:00
										 |  |  |             }, | 
					
						
							|  |  |  |             'skip': 'Video has been removed', | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |         }, | 
					
						
							|  |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |         host, video_id = re.match(self._VALID_URL, url).groups() | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage( | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |             'http://%s/video/%s' % (host, video_id), | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |             video_id, 'Downloading webpage') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = self._og_search_title(webpage) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |         embed_webpage = self._download_webpage( | 
					
						
							|  |  |  |             'http://%s/embed/%s' % (host, video_id), | 
					
						
							|  |  |  |             video_id, 'Downloading embed webpage') | 
					
						
							|  |  |  |         video = self._parse_json(self._search_regex( | 
					
						
							|  |  |  |             r'mvplayer\("#player"\s*,\s*({.+})', | 
					
						
							|  |  |  |             embed_webpage, 'mvplayer'), video_id)['video'] | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2019-03-11 15:18:09 +01:00
										 |  |  |             'thumbnail': video.get('poster') or self._og_search_thumbnail(webpage), | 
					
						
							|  |  |  |             'description': clean_html(self._og_search_description(webpage)), | 
					
						
							|  |  |  |             'duration': int_or_none(self._og_search_property('video:duration', webpage)), | 
					
						
							|  |  |  |             'url': video['ourUrl'], | 
					
						
							| 
									
										
										
										
											2014-09-07 01:21:58 +03:00
										 |  |  |         } |