youtube-dl

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

commit 5abf513cf87049b63369e45dd59818136080a68e
parent c6054e32017b37b88600772766e0be7947586dd9
Author: Remita Amine <remitamine@gmail.com>
Date:   Tue,  5 Jul 2016 10:44:16 +0100

[stitcher] fix episode config extraction

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

diff --git a/youtube_dl/extractor/stitcher.py b/youtube_dl/extractor/stitcher.py @@ -56,7 +56,7 @@ class StitcherIE(InfoExtractor): episode = self._parse_json( 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'] title = unescapeHTML(episode['title'])