mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[smotri] Modernize and add support for emdebbed videos (Closes #2585)
This commit is contained in:
		| @@ -25,6 +25,7 @@ from ..utils import ( | |||||||
| from .brightcove import BrightcoveIE | from .brightcove import BrightcoveIE | ||||||
| from .ooyala import OoyalaIE | from .ooyala import OoyalaIE | ||||||
| from .rutv import RUTVIE | from .rutv import RUTVIE | ||||||
|  | from .smotri import SmotriIE | ||||||
|  |  | ||||||
|  |  | ||||||
| class GenericIE(InfoExtractor): | class GenericIE(InfoExtractor): | ||||||
| @@ -212,6 +213,21 @@ class GenericIE(InfoExtractor): | |||||||
|                 'skip_download': 'Requires rtmpdump' |                 'skip_download': 'Requires rtmpdump' | ||||||
|             } |             } | ||||||
|         }, |         }, | ||||||
|  |         # smotri embed | ||||||
|  |         { | ||||||
|  |             'url': 'http://rbctv.rbc.ru/archive/news/562949990879132.shtml', | ||||||
|  |             'md5': 'ec40048448e9284c9a1de77bb188108b', | ||||||
|  |             'info_dict': { | ||||||
|  |                 'id': 'v27008541fad', | ||||||
|  |                 'ext': 'mp4', | ||||||
|  |                 'title': 'Крым и Севастополь вошли в состав России', | ||||||
|  |                 'description': 'md5:fae01b61f68984c7bd2fa741e11c3175', | ||||||
|  |                 'duration': 900, | ||||||
|  |                 'upload_date': '20140318', | ||||||
|  |                 'uploader': 'rbctv_2012_4', | ||||||
|  |                 'uploader_id': 'rbctv_2012_4', | ||||||
|  |             }, | ||||||
|  |         }, | ||||||
|     ] |     ] | ||||||
|  |  | ||||||
|     def report_download_webpage(self, video_id): |     def report_download_webpage(self, video_id): | ||||||
| @@ -547,6 +563,11 @@ class GenericIE(InfoExtractor): | |||||||
|         if mobj is not None: |         if mobj is not None: | ||||||
|             return self.url_result(mobj.group('url'), 'ArteTVEmbed') |             return self.url_result(mobj.group('url'), 'ArteTVEmbed') | ||||||
|  |  | ||||||
|  |         # Look for embedded smotri.com player | ||||||
|  |         smotri_url = SmotriIE._extract_url(webpage) | ||||||
|  |         if smotri_url: | ||||||
|  |             return self.url_result(smotri_url, 'Smotri') | ||||||
|  |  | ||||||
|         # Start with something easy: JW Player in SWFObject |         # Start with something easy: JW Player in SWFObject | ||||||
|         mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage) |         mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage) | ||||||
|         if mobj is None: |         if mobj is None: | ||||||
|   | |||||||
| @@ -13,22 +13,24 @@ from ..utils import ( | |||||||
|     compat_urllib_request, |     compat_urllib_request, | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
|     url_basename, |     url_basename, | ||||||
|  |     int_or_none, | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| class SmotriIE(InfoExtractor): | class SmotriIE(InfoExtractor): | ||||||
|     IE_DESC = 'Smotri.com' |     IE_DESC = 'Smotri.com' | ||||||
|     IE_NAME = 'smotri' |     IE_NAME = 'smotri' | ||||||
|     _VALID_URL = r'^https?://(?:www\.)?(?P<url>smotri\.com/video/view/\?id=(?P<videoid>v(?P<realvideoid>[0-9]+)[a-z0-9]{4}))' |     _VALID_URL = r'^https?://(?:www\.)?(?:smotri\.com/video/view/\?id=|pics\.smotri\.com/(?:player|scrubber_custom8)\.swf\?file=)(?P<videoid>v(?P<realvideoid>[0-9]+)[a-z0-9]{4})' | ||||||
|     _NETRC_MACHINE = 'smotri' |     _NETRC_MACHINE = 'smotri' | ||||||
|  |  | ||||||
|     _TESTS = [ |     _TESTS = [ | ||||||
|         # real video id 2610366 |         # real video id 2610366 | ||||||
|         { |         { | ||||||
|             'url': 'http://smotri.com/video/view/?id=v261036632ab', |             'url': 'http://smotri.com/video/view/?id=v261036632ab', | ||||||
|             'file': 'v261036632ab.mp4', |  | ||||||
|             'md5': '2a7b08249e6f5636557579c368040eb9', |             'md5': '2a7b08249e6f5636557579c368040eb9', | ||||||
|             'info_dict': { |             'info_dict': { | ||||||
|  |                 'id': 'v261036632ab', | ||||||
|  |                 'ext': 'mp4', | ||||||
|                 'title': 'катастрофа с камер видеонаблюдения', |                 'title': 'катастрофа с камер видеонаблюдения', | ||||||
|                 'uploader': 'rbc2008', |                 'uploader': 'rbc2008', | ||||||
|                 'uploader_id': 'rbc08', |                 'uploader_id': 'rbc08', | ||||||
| @@ -40,9 +42,10 @@ class SmotriIE(InfoExtractor): | |||||||
|         # real video id 57591 |         # real video id 57591 | ||||||
|         { |         { | ||||||
|             'url': 'http://smotri.com/video/view/?id=v57591cb20', |             'url': 'http://smotri.com/video/view/?id=v57591cb20', | ||||||
|             'file': 'v57591cb20.flv', |  | ||||||
|             'md5': '830266dfc21f077eac5afd1883091bcd', |             'md5': '830266dfc21f077eac5afd1883091bcd', | ||||||
|             'info_dict': { |             'info_dict': { | ||||||
|  |                 'id': 'v57591cb20', | ||||||
|  |                 'ext': 'flv', | ||||||
|                 'title': 'test', |                 'title': 'test', | ||||||
|                 'uploader': 'Support Photofile@photofile', |                 'uploader': 'Support Photofile@photofile', | ||||||
|                 'uploader_id': 'support-photofile', |                 'uploader_id': 'support-photofile', | ||||||
| @@ -54,9 +57,10 @@ class SmotriIE(InfoExtractor): | |||||||
|         # video-password |         # video-password | ||||||
|         { |         { | ||||||
|             'url': 'http://smotri.com/video/view/?id=v1390466a13c', |             'url': 'http://smotri.com/video/view/?id=v1390466a13c', | ||||||
|             'file': 'v1390466a13c.mp4', |  | ||||||
|             'md5': 'f6331cef33cad65a0815ee482a54440b', |             'md5': 'f6331cef33cad65a0815ee482a54440b', | ||||||
|             'info_dict': { |             'info_dict': { | ||||||
|  |                 'id': 'v1390466a13c', | ||||||
|  |                 'ext': 'mp4', | ||||||
|                 'title': 'TOCCA_A_NOI_-_LE_COSE_NON_VANNO_CAMBIAMOLE_ORA-1', |                 'title': 'TOCCA_A_NOI_-_LE_COSE_NON_VANNO_CAMBIAMOLE_ORA-1', | ||||||
|                 'uploader': 'timoxa40', |                 'uploader': 'timoxa40', | ||||||
|                 'uploader_id': 'timoxa40', |                 'uploader_id': 'timoxa40', | ||||||
| @@ -71,9 +75,10 @@ class SmotriIE(InfoExtractor): | |||||||
|         # age limit + video-password |         # age limit + video-password | ||||||
|         { |         { | ||||||
|             'url': 'http://smotri.com/video/view/?id=v15408898bcf', |             'url': 'http://smotri.com/video/view/?id=v15408898bcf', | ||||||
|             'file': 'v15408898bcf.flv', |  | ||||||
|             'md5': '91e909c9f0521adf5ee86fbe073aad70', |             'md5': '91e909c9f0521adf5ee86fbe073aad70', | ||||||
|             'info_dict': { |             'info_dict': { | ||||||
|  |                 'id': 'v15408898bcf', | ||||||
|  |                 'ext': 'flv', | ||||||
|                 'title': 'этот ролик не покажут по ТВ', |                 'title': 'этот ролик не покажут по ТВ', | ||||||
|                 'uploader': 'zzxxx', |                 'uploader': 'zzxxx', | ||||||
|                 'uploader_id': 'ueggb', |                 'uploader_id': 'ueggb', | ||||||
| @@ -85,7 +90,22 @@ class SmotriIE(InfoExtractor): | |||||||
|             'params': { |             'params': { | ||||||
|                 'videopassword': '333' |                 'videopassword': '333' | ||||||
|             } |             } | ||||||
|         } |         }, | ||||||
|  |         # swf player | ||||||
|  |         { | ||||||
|  |             'url': 'http://pics.smotri.com/scrubber_custom8.swf?file=v9188090500', | ||||||
|  |             'md5': '4d47034979d9390d14acdf59c4935bc2', | ||||||
|  |             'info_dict': { | ||||||
|  |                 'id': 'v9188090500', | ||||||
|  |                 'ext': 'mp4', | ||||||
|  |                 'title': 'Shakira - Don\'t Bother', | ||||||
|  |                 'uploader': 'HannahL', | ||||||
|  |                 'uploader_id': 'lisaha95', | ||||||
|  |                 'upload_date': '20090331', | ||||||
|  |                 'description': 'Shakira - Don\'t Bother, видео Shakira - Don\'t Bother', | ||||||
|  |                 'thumbnail': 'http://frame8.loadup.ru/44/0b/918809.7.3.jpg', | ||||||
|  |             }, | ||||||
|  |         }, | ||||||
|     ] |     ] | ||||||
|  |  | ||||||
|     _SUCCESS = 0 |     _SUCCESS = 0 | ||||||
| @@ -93,6 +113,21 @@ class SmotriIE(InfoExtractor): | |||||||
|     _PASSWORD_DETECTED = 2 |     _PASSWORD_DETECTED = 2 | ||||||
|     _VIDEO_NOT_FOUND = 3 |     _VIDEO_NOT_FOUND = 3 | ||||||
|  |  | ||||||
|  |     @classmethod | ||||||
|  |     def _extract_url(cls, webpage): | ||||||
|  |         mobj = re.search( | ||||||
|  |             r'<embed[^>]src=(["\'])(?P<url>http://pics\.smotri\.com/(?:player|scrubber_custom8)\.swf\?file=v.+?\1)', | ||||||
|  |             webpage) | ||||||
|  |         if mobj is not None: | ||||||
|  |             return mobj.group('url') | ||||||
|  |  | ||||||
|  |         mobj = re.search( | ||||||
|  |             r'''(?x)<div\s+class="video_file">http://smotri\.com/video/download/file/[^<]+</div>\s* | ||||||
|  |                     <div\s+class="video_image">[^<]+</div>\s* | ||||||
|  |                     <div\s+class="video_id">(?P<id>[^<]+)</div>''', webpage) | ||||||
|  |         if mobj is not None: | ||||||
|  |             return 'http://smotri.com/video/view/?id=%s' % mobj.group('id') | ||||||
|  |  | ||||||
|     def _search_meta(self, name, html, display_name=None): |     def _search_meta(self, name, html, display_name=None): | ||||||
|         if display_name is None: |         if display_name is None: | ||||||
|             display_name = name |             display_name = name | ||||||
| @@ -134,7 +169,7 @@ class SmotriIE(InfoExtractor): | |||||||
|  |  | ||||||
|         # Video JSON does not provide enough meta data |         # Video JSON does not provide enough meta data | ||||||
|         # We will extract some from the video web page instead |         # We will extract some from the video web page instead | ||||||
|         video_page_url = 'http://' + mobj.group('url') |         video_page_url = 'http://smotri.com/video/view/?id=%s' % video_id | ||||||
|         video_page = self._download_webpage(video_page_url, video_id, 'Downloading video page') |         video_page = self._download_webpage(video_page_url, video_id, 'Downloading video page') | ||||||
|  |  | ||||||
|         # Warning if video is unavailable |         # Warning if video is unavailable | ||||||
| @@ -222,7 +257,7 @@ class SmotriIE(InfoExtractor): | |||||||
|             'upload_date': video_upload_date, |             'upload_date': video_upload_date, | ||||||
|             'uploader_id': video_uploader_id, |             'uploader_id': video_uploader_id, | ||||||
|             'duration': video_duration, |             'duration': video_duration, | ||||||
|             'view_count': video_view_count, |             'view_count': int_or_none(video_view_count), | ||||||
|             'age_limit': 18 if adult_content else 0, |             'age_limit': 18 if adult_content else 0, | ||||||
|             'video_page_url': video_page_url |             'video_page_url': video_page_url | ||||||
|         } |         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․