[FFmpeg postprocess] use `creator' field as artist
This commit is contained in:
parent
68bb2fef95
commit
10bfb2c6ce
@ -399,6 +399,8 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
|
|||||||
metadata['artist'] = info['uploader']
|
metadata['artist'] = info['uploader']
|
||||||
elif info.get('uploader_id') is not None:
|
elif info.get('uploader_id') is not None:
|
||||||
metadata['artist'] = info['uploader_id']
|
metadata['artist'] = info['uploader_id']
|
||||||
|
elif info.get('creator') is not None:
|
||||||
|
metadata['artist'] = info['creator']
|
||||||
if info.get('description') is not None:
|
if info.get('description') is not None:
|
||||||
metadata['description'] = info['description']
|
metadata['description'] = info['description']
|
||||||
metadata['comment'] = info['description']
|
metadata['comment'] = info['description']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user