mpv
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
---@class SigilConfig
|
||||||
|
---@field target table<string, string|boolean>
|
||||||
|
---@field ignore? string[]
|
||||||
|
|
||||||
|
---@type SigilConfig
|
||||||
|
local config = {
|
||||||
|
target = {
|
||||||
|
linux = "~/.config/mpv",
|
||||||
|
darwin = "~/.config/mpv",
|
||||||
|
default = "~/.config/mpv",
|
||||||
|
},
|
||||||
|
ignore = {},
|
||||||
|
}
|
||||||
|
|
||||||
|
return config
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
# MPV Key Bindings
|
||||||
|
# Frame stepping for millisecond precision
|
||||||
|
. frame-step
|
||||||
|
, frame-back-step
|
||||||
|
|
||||||
|
# Small time jumps (100ms)
|
||||||
|
- seek -0.1
|
||||||
|
= seek +0.1
|
||||||
|
|
||||||
|
# Playback speed control
|
||||||
|
[ add speed -0.1
|
||||||
|
] add speed +0.1
|
||||||
|
|
||||||
|
# Frame stepping alternatives (in case . and , don't work)
|
||||||
|
RIGHT seek 5
|
||||||
|
LEFT seek -5
|
||||||
|
UP seek 60
|
||||||
|
DOWN seek -60
|
||||||
|
Shift+RIGHT seek 1
|
||||||
|
Shift+LEFT seek -1
|
||||||
|
Ctrl+RIGHT seek 0.1 exact
|
||||||
|
Ctrl+LEFT seek -0.1 exact
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# MPV Configuration
|
||||||
|
# Show time with milliseconds (e.g., 0:23:45.123)
|
||||||
|
osd-fractions=yes
|
||||||
Reference in New Issue
Block a user