diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-31 02:38:28 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-31 02:38:28 +0600 |
commit | a7685b3a6b02be62ebd53e2978ab43b1cde3ec4b (patch) | |
tree | 77028b51b0d5ded7d38184fc077393c96f993a19 | |
parent | 8f1fddc816dac7c0e9b216e85474aa8eb0d847bf (diff) |
[npo] Add extension for m3u8
-rw-r--r-- | youtube_dl/extractor/npo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py index eb12fb810..7cd5c9303 100644 --- a/youtube_dl/extractor/npo.py +++ b/youtube_dl/extractor/npo.py @@ -189,7 +189,7 @@ class NPOIE(NPOBaseIE): if not video_url: continue if format_id == 'adaptive': - formats.extend(self._extract_m3u8_formats(video_url, video_id)) + formats.extend(self._extract_m3u8_formats(video_url, video_id, 'mp4')) else: formats.append({ 'url': video_url, |