Browse Source

[pornhub] Add support for embeds

totalwebcasting
Sergey M․ 9 years ago
parent
commit
9fcbd5db2a
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      youtube_dl/extractor/pornhub.py

+ 3
- 2
youtube_dl/extractor/pornhub.py View File

@ -19,7 +19,7 @@ from ..aes import (
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 = {
'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015',
'md5': '882f488fa1f0026f023f33576004a2ed',
@ -39,7 +39,8 @@ class PornHubIE(InfoExtractor):
def _real_extract(self, 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')
webpage = self._download_webpage(req, video_id)


Loading…
Cancel
Save