diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-29 00:58:24 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-29 00:58:24 +0600 |
commit | 7e5edcfd333f05c610bd70c33f3d3fd0ff6a7cec (patch) | |
tree | cdb7507ea699e228587c945d24c38b716d696216 /youtube_dl/extractor/dcn.py | |
parent | 39d60b715a75e92d169167876bb07424301c0b67 (diff) |
Simplify formats accumulation for f4m/m3u8/smil formats
Now all _extract_*_formats routines return a list
Diffstat (limited to 'youtube_dl/extractor/dcn.py')
-rw-r--r-- | youtube_dl/extractor/dcn.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/dcn.py b/youtube_dl/extractor/dcn.py index 0d140f12f..8f48571de 100644 --- a/youtube_dl/extractor/dcn.py +++ b/youtube_dl/extractor/dcn.py @@ -56,10 +56,8 @@ class DCNBaseIE(InfoExtractor): m3u8_url = self._html_search_regex( r'file\s*:\s*"([^"]+)', webpage, 'm3u8 url', fatal=False) if m3u8_url: - m3u8_formats = self._extract_m3u8_formats( - m3u8_url, video_id, 'mp4', entry_protocol, m3u8_id='hls', fatal=None) - if m3u8_formats: - formats.extend(m3u8_formats) + formats.extend(self._extract_m3u8_formats( + m3u8_url, video_id, 'mp4', entry_protocol, m3u8_id='hls', fatal=None)) rtsp_url = self._search_regex( r'<a[^>]+href="(rtsp://[^"]+)"', webpage, 'rtsp url', fatal=False) |