[extractor/youtube] Fix `uploader_id` extraction

Closes #6247
Authored by: bashonly
This commit is contained in:
bashonly 2023-02-16 08:51:45 -06:00
parent 9ebac35577
commit 149eb0bbf3
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 1 additions and 1 deletions

View File

@ -4120,7 +4120,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'thumbnail': traverse_obj(original_thumbnails, (-1, 'url')),
'description': video_description,
'uploader': get_first(video_details, 'author'),
'uploader_id': self._search_regex(r'/(?:channel|user)/([^/?&#]+)', owner_profile_url, 'uploader id') if owner_profile_url else None,
'uploader_id': self._search_regex(r'/(?:channel/|user/|@)([^/?&#]+)', owner_profile_url, 'uploader id', default=None),
'uploader_url': owner_profile_url,
'channel_id': channel_id,
'channel_url': format_field(channel_id, None, 'https://www.youtube.com/channel/%s'),