options.c: display additional metadata tags during video playback

The currently-displayed tags make sense for music files, but similar
information for video is more commonly - or at least should be - put
under other tags, while the audio-related tags are often used for
other information on video files (particularly with youtube-dl's
output).
This commit is contained in:
Stephen Hutchinson 2018-03-04 17:00:23 -05:00 committed by Jan Ekström
parent 4d2b865088
commit f66ee85fdf
1 changed files with 3 additions and 2 deletions

View File

@ -965,8 +965,9 @@ const struct MPOpts mp_default_opts = {
.mf_fps = 1.0,
.display_tags = (char **)(const char*[]){
"Artist", "Album", "Album_Artist", "Comment", "Composer", "Genre",
"Performer", "Title", "Track", "icy-title", "service_name",
"Artist", "Album", "Album_Artist", "Comment", "Composer",
"Date", "Description", "Genre", "Performer", "Rating",
"Series", "Title", "Track", "icy-title", "service_name",
NULL
},