mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
[vine] Fix uploader extraction
This commit is contained in:
parent
2fcc873c4c
commit
78b373975d
@ -30,8 +30,9 @@ class VineIE(InfoExtractor):
|
||||
video_url = self._html_search_meta('twitter:player:stream', webpage,
|
||||
'video URL')
|
||||
|
||||
uploader = self._html_search_regex(r'<p class="username">(.*?)</p>',
|
||||
webpage, 'uploader', fatal=False, flags=re.DOTALL)
|
||||
twitter_title = self._html_search_meta('twitter:title', webpage,
|
||||
'twitter title')
|
||||
uploader = re.sub('\'s post on Vine', '', twitter_title)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
|
Loading…
Reference in New Issue
Block a user