mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 17:56:05 +00:00
[stitcher] fix episode config extraction
This commit is contained in:
parent
c6054e3201
commit
5abf513cf8
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class StitcherIE(InfoExtractor):
|
||||||
|
|
||||||
episode = self._parse_json(
|
episode = self._parse_json(
|
||||||
js_to_json(self._search_regex(
|
js_to_json(self._search_regex(
|
||||||
r'(?s)var\s+stitcher\s*=\s*({.+?});\n', webpage, 'episode config')),
|
r'(?s)var\s+stitcher(?:Config)?\s*=\s*({.+?});\n', webpage, 'episode config')),
|
||||||
display_id)['config']['episode']
|
display_id)['config']['episode']
|
||||||
|
|
||||||
title = unescapeHTML(episode['title'])
|
title = unescapeHTML(episode['title'])
|
||||||
|
|
Loading…
Reference in a new issue