aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/spankwire.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-16 21:19:18 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-16 21:19:18 +0600
commit447053668fbed993f6f4fd2e06d9282ea30224bb (patch)
treec9d53e42768e9d05a2f79087b71fa2ed2a5c7691 /youtube_dl/extractor/spankwire.py
parentf3aecb27a4d7b178ae66b4a294cff5dbe9bb2b18 (diff)
downloadyoutube-dl-447053668fbed993f6f4fd2e06d9282ea30224bb.zip
youtube-dl-447053668fbed993f6f4fd2e06d9282ea30224bb.tar.gz
youtube-dl-447053668fbed993f6f4fd2e06d9282ea30224bb.tar.bz2
[spankwire] Fix extraction
Diffstat (limited to 'youtube_dl/extractor/spankwire.py')
-rw-r--r--youtube_dl/extractor/spankwire.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/spankwire.py b/youtube_dl/extractor/spankwire.py
index 06d6e66..bff75d6 100644
--- a/youtube_dl/extractor/spankwire.py
+++ b/youtube_dl/extractor/spankwire.py
@@ -27,7 +27,7 @@ class SpankwireIE(InfoExtractor):
'description': 'Crazy Bitch X rated music video.',
'uploader': 'oreusz',
'uploader_id': '124697',
- 'upload_date': '20070508',
+ 'upload_date': '20070507',
'age_limit': 18,
}
}
@@ -44,7 +44,7 @@ class SpankwireIE(InfoExtractor):
title = self._html_search_regex(
r'<h1>([^<]+)', webpage, 'title')
description = self._html_search_regex(
- r'<div\s+id="descriptionContent">([^<]+)<',
+ r'(?s)<div\s+id="descriptionContent">(.+?)</div>',
webpage, 'description', fatal=False)
thumbnail = self._html_search_regex(
r'playerData\.screenShot\s*=\s*["\']([^"\']+)["\']',
@@ -64,12 +64,12 @@ class SpankwireIE(InfoExtractor):
r'<div id="viewsCounter"><span>([\d,\.]+)</span> views</div>',
webpage, 'view count', fatal=False))
comment_count = str_to_int(self._html_search_regex(
- r'Comments<span[^>]+>\s*\(([\d,\.]+)\)</span>',
+ r'<span\s+id="spCommentCount"[^>]*>([\d,\.]+)</span>',
webpage, 'comment count', fatal=False))
video_urls = list(map(
compat_urllib_parse.unquote,
- re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*["\']([^"\']+)["\']', webpage)))
+ re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*(?:encodeURIComponent\()?["\']([^"\']+)["\']', webpage)))
if webpage.find('flashvars\.encrypted = "true"') != -1:
password = self._search_regex(
r'flashvars\.video_title = "([^"]+)',