mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Allow downloading videos with other characters in their titles
Especially html entities
This commit is contained in:
		| @@ -3694,9 +3694,10 @@ class SteamIE(InfoExtractor): | |||||||
|         videourl = 'http://store.steampowered.com/video/%s/' % gameID |         videourl = 'http://store.steampowered.com/video/%s/' % gameID | ||||||
|         webpage = self._download_webpage(videourl, gameID) |         webpage = self._download_webpage(videourl, gameID) | ||||||
|         mweb = re.finditer(urlRE, webpage) |         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)) |         titles = list(re.finditer(namesRE, webpage)) | ||||||
|         videos = [] |         videos = [] | ||||||
|  |         unescaper = compat_html_parser.HTMLParser() | ||||||
|         for vid,vtitle in zip(mweb,titles): |         for vid,vtitle in zip(mweb,titles): | ||||||
|             video_id = vid.group('videoID') |             video_id = vid.group('videoID') | ||||||
|             title = vtitle.group('videoName') |             title = vtitle.group('videoName') | ||||||
| @@ -3707,7 +3708,7 @@ class SteamIE(InfoExtractor): | |||||||
|                 'id':video_id, |                 'id':video_id, | ||||||
|                 'url':video_url, |                 'url':video_url, | ||||||
|                 'ext': 'flv', |                 'ext': 'flv', | ||||||
|                 'title': title |                 'title': unescaper.unescape(title) | ||||||
|                   } |                   } | ||||||
|             videos.append(info) |             videos.append(info) | ||||||
|         return videos |         return videos | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz