mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-06-30 11:02:51 -05:00
[bbccouk] Add support for https protocol in media selector (closes #12701)
This commit is contained in:
@ -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,
|
||||||
|
Reference in New Issue
Block a user