1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-27 01:22:30 +00:00

stream_bluray: always show list of available titles

This commit is contained in:
Ricardo Constantino 2018-01-22 18:46:04 +00:00
parent 123e0239a0
commit 50bf59b652
No known key found for this signature in database
GPG Key ID: EFD16019AE4FF531
2 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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);