aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-03-04 19:18:21 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-03-04 19:24:52 +0530
commit3a4bb9f75134a8b9055612e50464f6e42f7386c8 (patch)
tree701ff23b05f657a690946e00b75b9105a2978b21
parentb90dbe6c198f51921d137c3c5cd517d4222bca18 (diff)
downloadhypervideo-pre-3a4bb9f75134a8b9055612e50464f6e42f7386c8.tar.lz
hypervideo-pre-3a4bb9f75134a8b9055612e50464f6e42f7386c8.tar.xz
hypervideo-pre-3a4bb9f75134a8b9055612e50464f6e42f7386c8.zip
[lbry] Fix `--ignore-no-formats-error`
Closes #2942
-rw-r--r--yt_dlp/extractor/lbry.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/yt_dlp/extractor/lbry.py b/yt_dlp/extractor/lbry.py
index 1405ce0c7..5d5457c53 100644
--- a/yt_dlp/extractor/lbry.py
+++ b/yt_dlp/extractor/lbry.py
@@ -17,6 +17,7 @@ from ..utils import (
parse_qs,
OnDemandPagedList,
try_get,
+ UnsupportedError,
urljoin,
)
@@ -196,11 +197,11 @@ class LBRYIE(LBRYBaseIE):
live_data = self._download_json(
f'https://api.live.odysee.com/v1/odysee/live/{claim_id}', claim_id,
note='Downloading livestream JSON metadata')['data']
- if not live_data['live']:
- raise ExtractorError('This stream is not live', expected=True)
- streaming_url = final_url = live_data['url']
+ streaming_url = final_url = live_data.get('url')
+ if not final_url and not live_data.get('live'):
+ self.raise_no_formats('This stream is not live', True, claim_id)
else:
- raise ExtractorError('Unsupported URL', expected=True)
+ raise UnsupportedError(url)
info = self._parse_stream(result, url)
if determine_ext(final_url) == 'm3u8':