mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-05-21 17:55:44 -05:00
[ie/twitch:clips] Fix uploader metadata extraction (#13022)
Fix 61046c3161
Authored by: 1271
This commit is contained in:
parent
b37ff4de5b
commit
1ae6bff564
1 changed files with 2 additions and 2 deletions
|
@ -1225,8 +1225,8 @@ def _real_extract(self, url):
|
||||||
'channel_id': ('broadcaster', 'id', {str}),
|
'channel_id': ('broadcaster', 'id', {str}),
|
||||||
'channel_follower_count': ('broadcaster', 'followers', 'totalCount', {int_or_none}),
|
'channel_follower_count': ('broadcaster', 'followers', 'totalCount', {int_or_none}),
|
||||||
'channel_is_verified': ('broadcaster', 'isPartner', {bool}),
|
'channel_is_verified': ('broadcaster', 'isPartner', {bool}),
|
||||||
'uploader': ('broadcaster', 'displayName', {str}),
|
'uploader': ('curator', 'displayName', {str}),
|
||||||
'uploader_id': ('broadcaster', 'id', {str}),
|
'uploader_id': ('curator', 'id', {str}),
|
||||||
'categories': ('game', 'displayName', {str}, filter, all, filter),
|
'categories': ('game', 'displayName', {str}, filter, all, filter),
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue