diff options
author | ajj8 <35781586+ajj8@users.noreply.github.com> | 2021-09-28 23:37:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 04:07:33 +0530 |
commit | 2d997542cae916d168f2e27bf05844cf8586494c (patch) | |
tree | 6470df02dfae532ed9afcd1fb8e82ec67b818c86 | |
parent | 7756277882e2dddde53df604945d02c74f477f38 (diff) | |
download | hypervideo-pre-2d997542cae916d168f2e27bf05844cf8586494c.tar.lz hypervideo-pre-2d997542cae916d168f2e27bf05844cf8586494c.tar.xz hypervideo-pre-2d997542cae916d168f2e27bf05844cf8586494c.zip |
[bbc] Extract better quality videos (#1113)
mobile-tablet-main only provides 540p25, so it shouldn't be used for the first attempt. Instead pc provides up to 720p50
Authored by: ajj8
-rw-r--r-- | yt_dlp/extractor/bbc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/bbc.py b/yt_dlp/extractor/bbc.py index de497ab1d..4e2dcd76b 100644 --- a/yt_dlp/extractor/bbc.py +++ b/yt_dlp/extractor/bbc.py @@ -588,8 +588,8 @@ class BBCIE(BBCCoUkIE): _VALID_URL = r'https?://(?:www\.)?bbc\.(?:com|co\.uk)/(?:[^/]+/)+(?P<id>[^/#?]+)' _MEDIA_SETS = [ - 'mobile-tablet-main', 'pc', + 'mobile-tablet-main', ] _TESTS = [{ |