Skip to content

Commit

Permalink
[CI] auto update yt_dlp to upstream commit 4b5eec0aaa7c02627f27a38659…
Browse files Browse the repository at this point in the history
…1b735b90e681a8
  • Loading branch information
github-actions[bot] committed Nov 25, 2024
1 parent 0cd8939 commit d3ca250
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions lib/yt_dlp/extractor/chaturbate.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,16 @@ def _extract_from_api(self, video_id, tld):
'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,
Expand Down
2 changes: 1 addition & 1 deletion lib/yt_dlp_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fe70f20aedf528fdee332131bc9b6710e54e6f10
4b5eec0aaa7c02627f27a386591b735b90e681a8

0 comments on commit d3ca250

Please sign in to comment.