mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[pbs] Fix extraction (closes #17109)
This commit is contained in:
parent
7ff129d3ea
commit
6f2d82a5a0
@ -15,6 +15,7 @@
|
|||||||
strip_jsonp,
|
strip_jsonp,
|
||||||
strip_or_none,
|
strip_or_none,
|
||||||
unified_strdate,
|
unified_strdate,
|
||||||
|
url_or_none,
|
||||||
US_RATINGS,
|
US_RATINGS,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -557,6 +558,13 @@ def extract_redirect_urls(info):
|
|||||||
if redirect_url and redirect_url not in redirect_urls:
|
if redirect_url and redirect_url not in redirect_urls:
|
||||||
redirects.append(redirect)
|
redirects.append(redirect)
|
||||||
redirect_urls.add(redirect_url)
|
redirect_urls.add(redirect_url)
|
||||||
|
encodings = info.get('encodings')
|
||||||
|
if isinstance(encodings, list):
|
||||||
|
for encoding in encodings:
|
||||||
|
encoding_url = url_or_none(encoding)
|
||||||
|
if encoding_url and encoding_url not in redirect_urls:
|
||||||
|
redirects.append({'url': encoding_url})
|
||||||
|
redirect_urls.add(encoding_url)
|
||||||
|
|
||||||
chapters = []
|
chapters = []
|
||||||
# Player pages may also serve different qualities
|
# Player pages may also serve different qualities
|
||||||
|
Loading…
Reference in New Issue
Block a user