diff options
| -rw-r--r-- | youtube_dl/extractor/pornhub.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py index b25f1f193..1dcc8df00 100644 --- a/youtube_dl/extractor/pornhub.py +++ b/youtube_dl/extractor/pornhub.py @@ -33,7 +33,7 @@ class PornHubIE(InfoExtractor):      _VALID_URL = r'''(?x)                      https?://                          (?: -                            (?:[a-z]+\.)?pornhub\.com/(?:view_video\.php\?viewkey=|embed/)| +                            (?:[a-z]+\.)?pornhub\.com/(?:(?:view_video\.php|video/show)\?viewkey=|embed/)|                              (?:www\.)?thumbzilla\.com/video/                          )                          (?P<id>[\da-z]+) @@ -97,6 +97,9 @@ class PornHubIE(InfoExtractor):      }, {          'url': 'https://www.thumbzilla.com/video/ph56c6114abd99a/horny-girlfriend-sex',          'only_matching': True, +    }, { +        'url': 'http://www.pornhub.com/video/show?viewkey=648719015', +        'only_matching': True,      }]      @staticmethod | 
