mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[escapist] Filter video differently (Fixes #4919)
This commit is contained in:
parent
596ac6e31f
commit
9650885be9
@ -271,7 +271,7 @@ class InfoExtractor(object):
|
|||||||
raise
|
raise
|
||||||
except compat_http_client.IncompleteRead as e:
|
except compat_http_client.IncompleteRead as e:
|
||||||
raise ExtractorError('A network error has occured.', cause=e, expected=True)
|
raise ExtractorError('A network error has occured.', cause=e, expected=True)
|
||||||
except (KeyError,) as e:
|
except (KeyError, StopIteration) as e:
|
||||||
raise ExtractorError('An extractor error has occured.', cause=e)
|
raise ExtractorError('An extractor error has occured.', cause=e)
|
||||||
|
|
||||||
def set_downloader(self, downloader):
|
def set_downloader(self, downloader):
|
||||||
|
@ -54,8 +54,11 @@ class EscapistIE(InfoExtractor):
|
|||||||
transform_source=js_to_json)
|
transform_source=js_to_json)
|
||||||
|
|
||||||
playlist = config['playlist']
|
playlist = config['playlist']
|
||||||
|
video_url = next(
|
||||||
|
p['url'] for p in playlist
|
||||||
|
if p.get('eventCategory') == 'Video')
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': playlist[1]['url'],
|
'url': video_url,
|
||||||
'format_id': name,
|
'format_id': name,
|
||||||
'quality': quality,
|
'quality': quality,
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user