Browse Source
[ndr:embed:base] Make separate formats extraction non fatal (closes #15203)
master
Sergey M․
6 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
4 additions and
2 deletions
-
youtube_dl/extractor/ndr.py
|
|
@ -190,10 +190,12 @@ class NDREmbedBaseIE(InfoExtractor): |
|
|
|
ext = determine_ext(src, None) |
|
|
|
if ext == 'f4m': |
|
|
|
formats.extend(self._extract_f4m_formats( |
|
|
|
src + '?hdcore=3.7.0&plugin=aasp-3.7.0.39.44', video_id, f4m_id='hds')) |
|
|
|
src + '?hdcore=3.7.0&plugin=aasp-3.7.0.39.44', video_id, |
|
|
|
f4m_id='hds', fatal=False)) |
|
|
|
elif ext == 'm3u8': |
|
|
|
formats.extend(self._extract_m3u8_formats( |
|
|
|
src, video_id, 'mp4', m3u8_id='hls', entry_protocol='m3u8_native')) |
|
|
|
src, video_id, 'mp4', m3u8_id='hls', |
|
|
|
entry_protocol='m3u8_native', fatal=False)) |
|
|
|
else: |
|
|
|
quality = f.get('quality') |
|
|
|
ff = { |
|
|
|