mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-10-31 22:44:32 +01:00
[slideshare] Fix extraction
This commit is contained in:
parent
f354d84807
commit
00dbdfc1f7
@ -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':
|
||||||
|
Loading…
Reference in New Issue
Block a user