mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-24 05:36:56 +01:00
[tudou] Fix title regex (Fixes #1614)
This commit is contained in:
parent
416a5efce7
commit
7c58ef3275
@ -48,7 +48,8 @@ def _real_extract(self, url):
|
||||
'ie_key': 'Youku'
|
||||
}
|
||||
|
||||
title = self._search_regex(r",kw:['\"](.+?)[\"']", webpage, u'title')
|
||||
title = self._search_regex(
|
||||
r",kw:\s*['\"](.+?)[\"']", webpage, u'title')
|
||||
thumbnail_url = self._search_regex(
|
||||
r",pic:\s*[\"'](.+?)[\"']", webpage, u'thumbnail URL', fatal=False)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user