1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-09 04:42:51 +08:00

[chaturbate] Allow alternative URLs at /fullvideo/

This commit is contained in:
Aksel Eromeeter 2019-09-05 00:32:04 +03:00
parent aaf9d904aa
commit 4afdcdfddf

View File

@ -7,7 +7,7 @@ from ..utils import ExtractorError
class ChaturbateIE(InfoExtractor):
_VALID_URL = r'https?://(?:[^/]+\.)?chaturbate\.com/(?P<id>[^/?#]+)'
_VALID_URL = r'^https?://(?:[^/]+\.)?chaturbate\.com/(?:fullvideo/\?b=)?(?P<id>[^/?&#]+)'
_TESTS = [{
'url': 'https://www.chaturbate.com/siswet19/',
'info_dict': {
@ -21,6 +21,9 @@ class ChaturbateIE(InfoExtractor):
'skip_download': True,
},
'skip': 'Room is offline',
}, {
'url': 'https://chaturbate.com/fullvideo/?b=caylin',
'only_matching': True,
}, {
'url': 'https://en.chaturbate.com/siswet19/',
'only_matching': True,
@ -30,6 +33,7 @@ class ChaturbateIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
url = 'https://chaturbate.com/%s/' % video_id
webpage = self._download_webpage(
url, video_id, headers=self.geo_verification_headers())