'MPV player time format HH:MM:SS or HH:MM:SS:mmm
does anybody know, if it is possible to set default displayed time format including milliseconds in mpv.conf ?
Now I need click on time to switch to millisecnds, because option ,,timems'' from manual https://mpv.io/manual/master/ doesn't work.
Thanks for help Peter
Solution 1:[1]
from window:
click the LEFT timestamp
from command:
mpv .. --script-opts=osc-timems=yes ..
or add in lua-settings/osc.conf
:
timems=yes
Solution 2:[2]
yes, add the line osd-fractions
to mpv.conf
. this will show milliseconds in the OSD (which will appear in mpv's terminal display).ig
if you want to see milliseconds in the OSC (in the video window), also add the line osd-level=2
to mpv.conf
. this will add a status message with the OSD time display (which is now in milliseconds) to the top of the window.
Or you can click the time display on the video each time you load a video.
Solution 3:[3]
mpv --osd-fractions --osd-level=2
or add to config
To toggle show - hide with keyboard, append to to input.conf:
o cycle-values osd-level 2 1
#^-- or any other key
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | David Buck |
Solution 2 | Default |
Solution 3 | Arch Stanton |