mirror of https://github.com/yt-dlp/yt-dlp.git
[bbccouk] Add support for https protocol in media selector (closes #12701)
This commit is contained in:
parent
a206ef62df
commit
1af959ef9f
|
@ -370,7 +370,7 @@ class BBCCoUkIE(InfoExtractor):
|
||||||
'acodec': encoding,
|
'acodec': encoding,
|
||||||
'vcodec': 'none',
|
'vcodec': 'none',
|
||||||
})
|
})
|
||||||
if protocol == 'http':
|
if protocol in ('http', 'https'):
|
||||||
# Direct link
|
# Direct link
|
||||||
fmt.update({
|
fmt.update({
|
||||||
'url': href,
|
'url': href,
|
||||||
|
|
Loading…
Reference in New Issue