mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2025-11-05 04:17:06 -05:00
Support youtube videos of google+ users
This commit is contained in:
@@ -412,7 +412,7 @@ class YoutubeIE(InfoExtractor):
|
|||||||
|
|
||||||
# uploader_id
|
# uploader_id
|
||||||
video_uploader_id = None
|
video_uploader_id = None
|
||||||
mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/user/([^"]+)">', video_webpage)
|
mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
|
||||||
if mobj is not None:
|
if mobj is not None:
|
||||||
video_uploader_id = mobj.group(1)
|
video_uploader_id = mobj.group(1)
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user