summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2018-03-04 17:00:23 -0500
committerJan Ekström <jeebjp@gmail.com>2018-06-11 20:33:12 +0300
commitf66ee85fdf39a1f085f5564bee427524c749aaca (patch)
treee239cd057df0f4eb98a2a075ec8dcd7c7349798e
parent4d2b8650880aa56c3302aed36d69253e4ab5bd6c (diff)
downloadmpv-f66ee85fdf39a1f085f5564bee427524c749aaca.tar.bz2
mpv-f66ee85fdf39a1f085f5564bee427524c749aaca.tar.xz
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).
-rw-r--r--options/options.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/options/options.c b/options/options.c
index 49aac52ba2..1f9f1ee2c0 100644
--- a/options/options.c
+++ b/options/options.c
@@ -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
},