Browse Source

[telegraaf] Make hls non fatal

totalwebcasting
Sergey M․ 8 years ago
parent
commit
f75e6890db
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/telegraaf.py

+ 1
- 1
youtube_dl/extractor/telegraaf.py View File

@ -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))


Loading…
Cancel
Save