mirror of https://github.com/mpv-player/mpv
commands: make exact seeking default bindings not use OSD
The OSD bar is very annoying when seeking. Especially when the seeks are very small, the OSD doesn't show any interesting information. The exact seeking commands are a use case where the user definitely never wants to see a seek bar.
This commit is contained in:
parent
e79efd28f8
commit
46e8d33809
|
@ -37,10 +37,11 @@ LEFT seek -10
|
|||
UP seek 60
|
||||
DOWN seek -60
|
||||
# Do smaller, always exact (non-keyframe-limited), seeks with shift.
|
||||
Shift+RIGHT seek 1 - exact
|
||||
Shift+LEFT seek -1 - exact
|
||||
Shift+UP seek 5 - exact
|
||||
Shift+DOWN seek -5 - exact
|
||||
# Don't show them on the OSD (no-osd).
|
||||
Shift+RIGHT no-osd seek 1 - exact
|
||||
Shift+LEFT no-osd seek -1 - exact
|
||||
Shift+UP no-osd seek 5 - exact
|
||||
Shift+DOWN no-osd seek -5 - exact
|
||||
PGUP seek 600
|
||||
PGDWN seek -600
|
||||
+ add audio-delay 0.100 # this changes audio/video sync
|
||||
|
|
Loading…
Reference in New Issue