[extractor/lbry] Update livestream API (#4042)

Authored by: flashdagger
pull/4118/head
MMM 2 years ago committed by GitHub
parent 612e31f5ea
commit 9fde8a6b12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -192,10 +192,11 @@ class LBRYIE(LBRYBaseIE):
claim_id, is_live = result['signing_channel']['claim_id'], True
headers = {'referer': 'https://player.odysee.live/'}
live_data = self._download_json(
f'https://api.live.odysee.com/v1/odysee/live/{claim_id}', claim_id,
'https://api.odysee.live/livestream/is_live', claim_id,
query={'channel_claim_id': claim_id},
note='Downloading livestream JSON metadata')['data']
streaming_url = final_url = live_data.get('url')
if not final_url and not live_data.get('live'):
streaming_url = final_url = live_data.get('VideoURL')
if not final_url and not live_data.get('Live'):
self.raise_no_formats('This stream is not live', True, claim_id)
else:
raise UnsupportedError(url)

Loading…
Cancel
Save