aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 21:05:04 +0100
committerJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 21:17:35 +0100
commit9cf98a2bcc9cae6bb308b42c0da3587b7d4115f2 (patch)
treec9162d5df25e781f2f0874f030f38bb15670cf79
parentf5ebb61495a2ed3ee5563bedc72889be7198c7f2 (diff)
downloadyoutube-dl-9cf98a2bcc9cae6bb308b42c0da3587b7d4115f2.tar.xz
Allow downloading videos with other characters in their titles
Especially html entities
-rwxr-xr-xyoutube_dl/InfoExtractors.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index d040eec82..f72defdf2 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -3694,9 +3694,10 @@ class SteamIE(InfoExtractor):
videourl = 'http://store.steampowered.com/video/%s/' % gameID
webpage = self._download_webpage(videourl, gameID)
mweb = re.finditer(urlRE, webpage)
- namesRE = r'<span class=\"title\">(?P<videoName>[\w:/\.\?=\+\s-]+)</span>'
+ namesRE = r'<span class="title">(?P<videoName>.+)</span>'
titles = list(re.finditer(namesRE, webpage))
videos = []
+ unescaper = compat_html_parser.HTMLParser()
for vid,vtitle in zip(mweb,titles):
video_id = vid.group('videoID')
title = vtitle.group('videoName')
@@ -3707,7 +3708,7 @@ class SteamIE(InfoExtractor):
'id':video_id,
'url':video_url,
'ext': 'flv',
- 'title': title
+ 'title': unescaper.unescape(title)
}
videos.append(info)
return videos