Compare commits

..

1 Commits

Author SHA1 Message Date
Oleksis Fraga Menéndez
9e0acbda19
Merge 99e431e4a0 into fe70f20aed 2024-11-24 08:42:31 +05:30

View File

@ -59,16 +59,17 @@ class ChaturbateIE(InfoExtractor):
'Accept': 'application/json', 'Accept': 'application/json',
}, fatal=False, impersonate=True) or {} }, fatal=False, impersonate=True) or {}
m3u8_url = response.get('url') status = response.get('room_status')
if not m3u8_url: if status != 'public':
status = response.get('room_status')
if error := self._ERROR_MAP.get(status): if error := self._ERROR_MAP.get(status):
raise ExtractorError(error, expected=True) raise ExtractorError(error, expected=True)
if status == 'public': self.report_warning('Falling back to webpage extraction')
self.raise_geo_restricted()
self.report_warning(f'Got status "{status}" from API; falling back to webpage extraction')
return None return None
m3u8_url = response.get('url')
if not m3u8_url:
self.raise_geo_restricted()
return { return {
'id': video_id, 'id': video_id,
'title': video_id, 'title': video_id,