Skip to content

Commit

Permalink
stream_bluray: always show list of available titles
Browse files Browse the repository at this point in the history
  • Loading branch information
wiiaboo committed Jan 23, 2018
1 parent 123e023 commit 50bf59b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DOCS/man/mpv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions stream/stream_bluray.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);

Expand Down

0 comments on commit 50bf59b

Please sign in to comment.