diff options
author | siddharth <s@ricketyspace.net> | 2021-12-23 21:15:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-24 07:45:48 +0530 |
commit | 774a46c53dc75eae68d11abdc40b7fe7e1e828ca (patch) | |
tree | 351f90a68c0b6c920664daa46e1453dbac69be2c | |
parent | c8b80b9643708b5210f0ccb313c15bd576886f7d (diff) | |
download | hypervideo-pre-774a46c53dc75eae68d11abdc40b7fe7e1e828ca.tar.lz hypervideo-pre-774a46c53dc75eae68d11abdc40b7fe7e1e828ca.tar.xz hypervideo-pre-774a46c53dc75eae68d11abdc40b7fe7e1e828ca.zip |
[npr] Make SMIL extraction non-fatal (#2099)
Closes #1934
Authored by: r5d
-rw-r--r-- | yt_dlp/extractor/common.py | 2 | ||||
-rw-r--r-- | yt_dlp/extractor/npr.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index e15763953..6cd2551bf 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -2332,7 +2332,7 @@ class InfoExtractor(object): if smil is False: assert not fatal - return [] + return [], {} namespace = self._parse_smil_namespace(smil) diff --git a/yt_dlp/extractor/npr.py b/yt_dlp/extractor/npr.py index 9d1122f0c..49f062d7a 100644 --- a/yt_dlp/extractor/npr.py +++ b/yt_dlp/extractor/npr.py @@ -91,7 +91,8 @@ class NprIE(InfoExtractor): elif format_id == 'smil': smil_formats = self._extract_smil_formats( format_url, media_id, transform_source=lambda s: s.replace( - 'rtmp://flash.npr.org/ondemand/', 'https://ondemand.npr.org/')) + 'rtmp://flash.npr.org/ondemand/', 'https://ondemand.npr.org/'), + fatal=False) self._check_formats(smil_formats, media_id) formats.extend(smil_formats) else: |