aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/bloomberg.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-28 22:45:19 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-28 22:45:19 +0600
commitb7faebbac87430106d0249a09fcca55a5ab112de (patch)
treea7239fe14eaf5c9e30fa1e0aaba805a8bf7734a9 /youtube_dl/extractor/bloomberg.py
parent4191fdf147729728ca9c487f25ca66bf3d037cd5 (diff)
downloadyoutube-dl-b7faebbac87430106d0249a09fcca55a5ab112de.tar.xz
[bloomberg] Improve formats extraction
Diffstat (limited to 'youtube_dl/extractor/bloomberg.py')
-rw-r--r--youtube_dl/extractor/bloomberg.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py
index c28ed0c79..ebeef8f2a 100644
--- a/youtube_dl/extractor/bloomberg.py
+++ b/youtube_dl/extractor/bloomberg.py
@@ -37,10 +37,19 @@ class BloombergIE(InfoExtractor):
'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id)
formats = []
for stream in embed_info['streams']:
+ stream_url = stream.get('url')
+ if not stream_url:
+ continue
if stream['muxing_format'] == 'TS':
- formats.extend(self._extract_m3u8_formats(stream['url'], video_id))
+ m3u8_formats = self._extract_m3u8_formats(
+ stream_url, video_id, 'mp4', m3u8_id='hls', fatal=False)
+ if m3u8_formats:
+ formats.extend(m3u8_formats)
else:
- formats.extend(self._extract_f4m_formats(stream['url'], video_id))
+ f4m_formats = self._extract_f4m_formats(
+ stream_url, video_id, f4m_id='hds', fatal=False)
+ if f4m_formats:
+ formats.extend(f4m_formats)
self._sort_formats(formats)
return {