1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 12:17:15 +08:00

fix greedy regex

This commit is contained in:
satunnainen 2017-07-09 19:37:53 +03:00
parent 5b58821823
commit f3c56e21ad

View File

@ -31,7 +31,7 @@ class SlideshareIE(InfoExtractor):
page_title = mobj.group('title') page_title = mobj.group('title')
webpage = self._download_webpage(url, page_title) webpage = self._download_webpage(url, page_title)
slideshare_obj = self._search_regex( slideshare_obj = self._search_regex(
r'\$\.extend\(.*slideshare_object,\s*(\{.*?\})\);', r'\$\.extend\(.*?slideshare_object,\s*(\{.*?\})\);',
webpage, 'slideshare object') webpage, 'slideshare object')
info = json.loads(slideshare_obj) info = json.loads(slideshare_obj)
if info['slideshow']['type'] != 'video': if info['slideshow']['type'] != 'video':