Skip to content

Commit

Permalink
Merge pull request #617 from jaimeMF/steamIE
Browse files Browse the repository at this point in the history
[steamIE]Allow downloading videos with other characters in their titles
  • Loading branch information
phihag committed Jan 3, 2013
2 parents f5ebb61 + 2671479 commit 8e5f761
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3694,8 +3694,8 @@ def _real_extract(self, url):
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>'
titles = list(re.finditer(namesRE, webpage))
namesRE = r'<span class="title">(?P<videoName>.+?)</span>'
titles = re.finditer(namesRE, webpage)
videos = []
for vid,vtitle in zip(mweb,titles):
video_id = vid.group('videoID')
Expand All @@ -3707,7 +3707,7 @@ def _real_extract(self, url):
'id':video_id,
'url':video_url,
'ext': 'flv',
'title': title
'title': unescapeHTML(title)
}
videos.append(info)
return videos
Expand Down

0 comments on commit 8e5f761

Please sign in to comment.