mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 10:24:33 +01:00
[vrv] Duplicate uploader_id to channel, channel_id, and uploader
This commit is contained in:
parent
e71be6ee9f
commit
34502e1545
@ -199,7 +199,10 @@ class VRVIE(VRVBaseIE):
|
|||||||
'thumbnails': thumbnails,
|
'thumbnails': thumbnails,
|
||||||
'description': video_data.get('description'),
|
'description': video_data.get('description'),
|
||||||
'duration': float_or_none(video_data.get('duration_ms'), 1000),
|
'duration': float_or_none(video_data.get('duration_ms'), 1000),
|
||||||
|
'uploader': video_data.get('channel_id'),
|
||||||
'uploader_id': video_data.get('channel_id'),
|
'uploader_id': video_data.get('channel_id'),
|
||||||
|
'channel': video_data.get('channel_id'),
|
||||||
|
'channel_id': video_data.get('channel_id'),
|
||||||
'series': video_data.get('series_title'),
|
'series': video_data.get('series_title'),
|
||||||
'season': video_data.get('season_title'),
|
'season': video_data.get('season_title'),
|
||||||
'season_number': int_or_none(video_data.get('season_number')),
|
'season_number': int_or_none(video_data.get('season_number')),
|
||||||
|
Loading…
Reference in New Issue
Block a user