diff options
author | Jakob Kruse <kruse@kruse-net.dk> | 2024-11-24 23:20:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 22:20:30 +0000 |
commit | 4b5eec0aaa7c02627f27a386591b735b90e681a8 (patch) | |
tree | 5392ba805a48f719e9cef43ceaf62f9e54050e49 | |
parent | fe70f20aedf528fdee332131bc9b6710e54e6f10 (diff) |
[ie/chaturbate] Fix support for non-public streams (#11624)
Fix bug in 720b3dc453c342bc2e8df7dbc0acaab4479de46c
Closes #11623
Authored by: jkruse
-rw-r--r-- | yt_dlp/extractor/chaturbate.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/yt_dlp/extractor/chaturbate.py b/yt_dlp/extractor/chaturbate.py index a40b7d39c..d031d3985 100644 --- a/yt_dlp/extractor/chaturbate.py +++ b/yt_dlp/extractor/chaturbate.py @@ -59,17 +59,16 @@ class ChaturbateIE(InfoExtractor): 'Accept': 'application/json', }, fatal=False, impersonate=True) or {} - status = response.get('room_status') - if status != 'public': + m3u8_url = response.get('url') + if not m3u8_url: + status = response.get('room_status') if error := self._ERROR_MAP.get(status): raise ExtractorError(error, expected=True) - self.report_warning('Falling back to webpage extraction') + if status == 'public': + self.raise_geo_restricted() + self.report_warning(f'Got status "{status}" from API; falling back to webpage extraction') return None - m3u8_url = response.get('url') - if not m3u8_url: - self.raise_geo_restricted() - return { 'id': video_id, 'title': video_id, |