mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
Fix for missing release year in metadata
This commit is contained in:
parent
6a6e1a0cd8
commit
39f23dfd67
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
|
||||||
break
|
break
|
||||||
|
|
||||||
add('title', ('track', 'title'))
|
add('title', ('track', 'title'))
|
||||||
add('date', 'upload_date')
|
add('date', ('release_year', 'upload_date'))
|
||||||
add(('description', 'comment'), 'description')
|
add(('description', 'comment'), 'description')
|
||||||
add('purl', 'webpage_url')
|
add('purl', 'webpage_url')
|
||||||
add('track', 'track_number')
|
add('track', 'track_number')
|
||||||
|
|
Loading…
Reference in a new issue