diff options
author | remitamine <remitamine@gmail.com> | 2015-12-29 14:58:22 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2015-12-29 14:58:59 +0100 |
commit | f2017cb020efe0956049bda11df4eec7c5985fda (patch) | |
tree | 1376b14cc066b4852ba808cdcbefb56efb0faf85 /youtube_dl/extractor/rts.py | |
parent | f889ac45b83cd771919fba29c14cee9d24e637b7 (diff) |
[srgssr] split long lines and use m3u8_native
Diffstat (limited to 'youtube_dl/extractor/rts.py')
-rw-r--r-- | youtube_dl/extractor/rts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rts.py b/youtube_dl/extractor/rts.py index f063ab5dd..3cc32847b 100644 --- a/youtube_dl/extractor/rts.py +++ b/youtube_dl/extractor/rts.py @@ -197,7 +197,7 @@ class RTSIE(SRGSSRIE): media_id, f4m_id=format_id, fatal=False)) elif format_url.endswith('.m3u8'): formats.extend(self._extract_m3u8_formats( - format_url, media_id, 'mp4', m3u8_id=format_id, fatal=False)) + format_url, media_id, 'mp4', 'm3u8_native', m3u8_id=format_id, fatal=False)) else: formats.append({ 'format_id': format_id, |