mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[pornhub] Add support for embeds
This commit is contained in:
		| @@ -19,7 +19,7 @@ from ..aes import ( | |||||||
|  |  | ||||||
|  |  | ||||||
| class PornHubIE(InfoExtractor): | class PornHubIE(InfoExtractor): | ||||||
|     _VALID_URL = r'https?://(?:www\.)?pornhub\.com/view_video\.php\?viewkey=(?P<id>[0-9a-f]+)' |     _VALID_URL = r'https?://(?:www\.)?pornhub\.com/(?:view_video\.php\?viewkey=|embed/)(?P<id>[0-9a-f]+)' | ||||||
|     _TEST = { |     _TEST = { | ||||||
|         'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015', |         'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015', | ||||||
|         'md5': '882f488fa1f0026f023f33576004a2ed', |         'md5': '882f488fa1f0026f023f33576004a2ed', | ||||||
| @@ -39,7 +39,8 @@ class PornHubIE(InfoExtractor): | |||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         video_id = self._match_id(url) |         video_id = self._match_id(url) | ||||||
|  |  | ||||||
|         req = compat_urllib_request.Request(url) |         req = compat_urllib_request.Request( | ||||||
|  |             'http://www.pornhub.com/view_video.php?viewkey=%s' % video_id) | ||||||
|         req.add_header('Cookie', 'age_verified=1') |         req.add_header('Cookie', 'age_verified=1') | ||||||
|         webpage = self._download_webpage(req, video_id) |         webpage = self._download_webpage(req, video_id) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user