mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 00:25:06 +00:00
[extractor/youtube] uploader_id
includes @
with handle
Authored by: bashonly
This commit is contained in:
parent
f737fb16d8
commit
c61cf091a5
1 changed files with 1 additions and 1 deletions
|
@ -4120,7 +4120,7 @@ def is_bad_format(fmt):
|
|||
'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', default=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'),
|
||||
|
|
Loading…
Reference in a new issue