Browse Source

[bbccouk] Add support for https protocol in media selector (closes #12701)

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
1af959ef9f
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/bbc.py

+ 1
- 1
youtube_dl/extractor/bbc.py View File

@ -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,


Loading…
Cancel
Save