1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 16:44:32 +01:00

[vrv] Duplicate uploader_id to channel, channel_id, and uploader

This commit is contained in:
ealgase 2019-01-27 13:18:07 -05:00 committed by GitHub
parent e71be6ee9f
commit 34502e1545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,10 @@ class VRVIE(VRVBaseIE):
'thumbnails': thumbnails,
'description': video_data.get('description'),
'duration': float_or_none(video_data.get('duration_ms'), 1000),
'uploader': 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'),
'season': video_data.get('season_title'),
'season_number': int_or_none(video_data.get('season_number')),