youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a7685b3a6b02be62ebd53e2978ab43b1cde3ec4b
parent 8f1fddc816dac7c0e9b216e85474aa8eb0d847bf
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 31 Jan 2016 02:38:28 +0600

[npo] Add extension for m3u8

Diffstat:
Myoutube_dl/extractor/npo.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,