diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-10 22:53:06 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-10 22:53:06 +0700 |
commit | 1af959ef9f8936a8e211f692a2da1a69e0076962 (patch) | |
tree | 005a1d844f769c501160e03c48bf2bf04b63b572 | |
parent | a206ef62df7e45992ebb26bf41f86c01d904fe75 (diff) |
[bbccouk] Add support for https protocol in media selector (closes #12701)
-rw-r--r-- | youtube_dl/extractor/bbc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 8a2ed0ab6..f0de07619 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -370,7 +370,7 @@ class BBCCoUkIE(InfoExtractor): 'acodec': encoding, 'vcodec': 'none', }) - if protocol == 'http': + if protocol in ('http', 'https'): # Direct link fmt.update({ 'url': href, |