summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2018-01-22 18:46:04 +0000
committerRicardo Constantino <wiiaboo@gmail.com>2018-01-23 11:13:37 +0000
commit50bf59b652384894a5cbd083732f4297707aa0bc (patch)
tree2a14fa6da18576b44f54fe3b5bad6ed61bbc31f5
parent123e0239a0b8167777da42521277667774fe2f30 (diff)
downloadmpv-50bf59b652384894a5cbd083732f4297707aa0bc.tar.bz2
mpv-50bf59b652384894a5cbd083732f4297707aa0bc.tar.xz
stream_bluray: always show list of available titles
-rw-r--r--DOCS/man/mpv.rst4
-rw-r--r--stream/stream_bluray.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst
index add7260a0b..97488f39b9 100644
--- a/DOCS/man/mpv.rst
+++ b/DOCS/man/mpv.rst
@@ -734,8 +734,8 @@ PROTOCOLS
``title`` can be: ``longest`` or ``first`` (selects the default
playlist); ``mpls/<number>`` (selects <number>.mpls playlist);
- ``<number>`` (select playlist with the same index). You can list
- the available playlists with ``--msg-level=bd=v``.
+ ``<number>`` (select playlist with the same index). mpv will list
+ the available playlists on loading.
``bluray://`` is an alias.
diff --git a/stream/stream_bluray.c b/stream/stream_bluray.c
index 1f5ea1711b..f26420b56d 100644
--- a/stream/stream_bluray.c
+++ b/stream/stream_bluray.c
@@ -418,7 +418,7 @@ static int bluray_stream_open_internal(stream_t *s)
return STREAM_UNSUPPORTED;
}
- MP_VERBOSE(s, "List of available titles:\n");
+ MP_INFO(s, "List of available titles:\n");
/* parse titles information */
uint64_t max_duration = 0;
@@ -428,7 +428,7 @@ static int bluray_stream_open_internal(stream_t *s)
continue;
char *time = mp_format_time(ti->duration / 90000, false);
- MP_VERBOSE(s, "idx: %3d duration: %s (playlist: %05d.mpls)\n",
+ MP_INFO(s, "idx: %3d duration: %s (playlist: %05d.mpls)\n",
i, time, ti->playlist);
talloc_free(time);