Display statistics for the currently played file in mpv.
Place stats.lua
in your ~/.config/mpv/scripts/
or ~/.mpv/scripts/
folder
to autoload the script. Alternatively load it with --script=<path>
.
The script is binding itself to i
(however, not overriding your own bindings)
and can therefore be invoked with this key.
You can create different bindings by adding <yourkey> script_binding stats
to
input.conf
.
You can configure some settings by creating a file stats.conf
in a folder
named lua-settings
within your mpv folder.
Please refer to the o
table within the script for possible option names and
consult mpv manual regarding
configuration syntax.
To change e.g. the text display duration your stats.conf
may look like:
duration=5
A more sophisticated example:
font=Arial
font_size=9
font_color=262626
border_size=0.5
border_color=FFFFFF
alpha=70
duration=5
debug=yes
Note: colors are given as hexadecimal values and use ASS tag order: BBGGRR (blue green red).