diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-02-01 23:48:23 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-02-01 23:48:23 +0600 | 
| commit | c6df692466aebed1b86c02233b579c03f0888704 (patch) | |
| tree | 7118cc485983a27996c6b24b8d3baa0affc91a02 | |
| parent | acf757f42eea16266a539fa0eb871dae422a1d22 (diff) | |
[rutv] Extract all m3u8 formats
| -rw-r--r-- | youtube_dl/extractor/rutv.py | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/rutv.py b/youtube_dl/extractor/rutv.py index a73e6f331..ef766237b 100644 --- a/youtube_dl/extractor/rutv.py +++ b/youtube_dl/extractor/rutv.py @@ -162,10 +162,8 @@ class RUTVIE(InfoExtractor):                          'vbr': int(quality),                      }                  elif transport == 'm3u8': -                    fmt = { -                        'url': url, -                        'ext': 'mp4', -                    } +                    formats.extend(self._extract_m3u8_formats(url, video_id, 'mp4')) +                    continue                  else:                      fmt = {                          'url': url  | 
