youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 8e5f7618704805caf9fac093e604834237a7965c
parent f5ebb61495a2ed3ee5563bedc72889be7198c7f2
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu,  3 Jan 2013 15:16:27 -0800

Merge pull request #617 from jaimeMF/steamIE

[steamIE]Allow downloading videos with other characters in their titles
Diffstat:
Myoutube_dl/InfoExtractors.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -3694,8 +3694,8 @@ 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>' - 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') @@ -3707,7 +3707,7 @@ class SteamIE(InfoExtractor): 'id':video_id, 'url':video_url, 'ext': 'flv', - 'title': title + 'title': unescapeHTML(title) } videos.append(info) return videos