projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0fb63a
)
[slideshare] Fix description
author
Philipp Hagemeister
<phihag@phihag.de>
Fri, 11 Apr 2014 00:19:15 +0000
(
02:19
+0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Fri, 11 Apr 2014 00:19:15 +0000
(
02:19
+0200)
youtube_dl/extractor/slideshare.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/slideshare.py
b/youtube_dl/extractor/slideshare.py
index 9c62825cc7f7cab2a4023a74e36307b48c280bd6..53c3c9220374737b88dc516ec810ecb6865b74f7 100644
(file)
--- a/
youtube_dl/extractor/slideshare.py
+++ b/
youtube_dl/extractor/slideshare.py
@@
-39,7
+39,8
@@
class SlideshareIE(InfoExtractor):
ext = info['jsplayer']['video_extension']
video_url = compat_urlparse.urljoin(bucket, doc + '-SD.' + ext)
description = self._html_search_regex(
- r'<p class="description.*?"[^>]*>(.*?)</p>', webpage, 'description')
+ r'<p\s+(?:style="[^"]*"\s+)?class="description.*?"[^>]*>(.*?)</p>', webpage,
+ 'description', fatal=False)
return {
'_type': 'video',