Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 413
user2432166 Avatar asked Aug 31 '18 12:08

user2432166


Video Answer


2 Answers

OSC (ON SCREEN CONTROLLER)

from window:

click the LEFT timestamp

from command:

mpv .. --script-opts=osc-timems=yes ..

or add in lua-settings/osc.conf:

timems=yes
like image 106
yakuv Avatar answered Sep 30 '22 09:09

yakuv


yes, add the line osd-fractions to mpv.config. this will show milliseconds in the OSD (which will appear in mpv's terminal display).

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.

like image 23
hb_ Avatar answered Sep 30 '22 09:09

hb_