mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[youtube] Fix uploader id and uploader URL extraction
This commit is contained in:
parent
7b16239a49
commit
a6211d237b
1 changed files with 7 additions and 0 deletions
|
@ -2230,6 +2230,13 @@ def _extract_filesize(media_url):
|
||||||
if mobj is not None:
|
if mobj is not None:
|
||||||
video_uploader_id = mobj.group('uploader_id')
|
video_uploader_id = mobj.group('uploader_id')
|
||||||
video_uploader_url = mobj.group('uploader_url')
|
video_uploader_url = mobj.group('uploader_url')
|
||||||
|
else:
|
||||||
|
owner_profile_url = url_or_none(microformat.get('ownerProfileUrl'))
|
||||||
|
if owner_profile_url:
|
||||||
|
video_uploader_id = self._search_regex(
|
||||||
|
r'(?:user|channel)/([^/]+)', owner_profile_url, 'uploader id',
|
||||||
|
default=None)
|
||||||
|
video_uploader_url = owner_profile_url
|
||||||
|
|
||||||
channel_id = (
|
channel_id = (
|
||||||
str_or_none(video_details.get('channelId'))
|
str_or_none(video_details.get('channelId'))
|
||||||
|
|
Loading…
Reference in a new issue