aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-03-26 18:21:07 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-03-26 18:21:07 +0800
commitd6c340cae5c1e5704d6e709eefb7009fcda6e213 (patch)
tree81bc5d3d67d95c3f68e8db44e346abbf4de1220b /youtube_dl/extractor/brightcove.py
parent5964b598ff536c32198181e5027610f3d9a474bb (diff)
downloadyoutube-dl-d6c340cae5c1e5704d6e709eefb7009fcda6e213.zip
youtube-dl-d6c340cae5c1e5704d6e709eefb7009fcda6e213.tar.gz
youtube-dl-d6c340cae5c1e5704d6e709eefb7009fcda6e213.tar.bz2
[brightcove] Extract more formats (#8862)
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index afe081d..c9e43a2 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -297,7 +297,7 @@ class BrightcoveLegacyIE(InfoExtractor):
'uploader': video_info.get('publisherName'),
}
- renditions = video_info.get('renditions')
+ renditions = video_info.get('renditions', []) + video_info.get('IOSRenditions', [])
if renditions:
formats = []
for rend in renditions:
@@ -319,13 +319,23 @@ class BrightcoveLegacyIE(InfoExtractor):
if ext is None:
ext = determine_ext(url)
size = rend.get('size')
- formats.append({
+ a_format = {
'url': url,
'ext': ext,
'height': rend.get('frameHeight'),
'width': rend.get('frameWidth'),
'filesize': size if size != 0 else None,
- })
+ }
+
+ # m3u8 manifests with remote == false are media playlists
+ # Not calling _extract_m3u8_formats here to save network traffic
+ if ext == 'm3u8':
+ a_format.update({
+ 'ext': 'mp4',
+ 'protocol': 'm3u8',
+ })
+
+ formats.append(a_format)
self._sort_formats(formats)
info['formats'] = formats
elif video_info.get('FLVFullLengthURL') is not None: