youtube-dl

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

commit f75e6890dbc70f0686e967e89b5c422a3aee8951
parent d9cb92c84058bce2c222b7a634608d7a16addcb2
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 24 Jul 2016 10:29:26 +0700

[telegraaf] Make hls non fatal

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

diff --git a/youtube_dl/extractor/telegraaf.py b/youtube_dl/extractor/telegraaf.py @@ -47,7 +47,7 @@ class TelegraafIE(InfoExtractor): ext = determine_ext(manifest_url) if ext == 'm3u8': formats.extend(self._extract_m3u8_formats( - manifest_url, video_id, ext='mp4', m3u8_id='hls')) + manifest_url, video_id, ext='mp4', m3u8_id='hls', fatal=False)) elif ext == 'mpd': formats.extend(self._extract_mpd_formats( manifest_url, video_id, mpd_id='dash', fatal=False))