commit: ca872a4c0b5a926be9dccec6dc43ebb5b8a6abb7
parent f2e87ef4fab5f6d000a7bb152b535a748866bca3
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Wed, 20 Nov 2013 09:23:53 +0100
[spankwire] Fix description search
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/spankwire.py b/youtube_dl/extractor/spankwire.py
@@ -40,7 +40,7 @@ class SpankwireIE(InfoExtractor):
thumbnail = self._html_search_regex(
r'flashvars\.image_url = "([^"]+)', webpage, u'thumbnail', fatal=False)
description = self._html_search_regex(
- r'>\s*Description:</div>\s*<[^>]+>([^<]+)', webpage, u'description', fatal=False)
+ r'<div\s+id="descriptionContent">([^<]+)<', webpage, u'description', fatal=False)
video_urls = list(map(compat_urllib_parse.unquote , re.findall(r'flashvars\.quality_[0-9]{3}p = "([^"]+)', webpage)))
if webpage.find('flashvars\.encrypted = "true"') != -1: