Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
improve input.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
hl2guide authored Aug 30, 2023
1 parent bfb6cac commit 6676ad6
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions mpv_v3/input.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# MPV v3 Input Configuration - version 1.1.25
# Date: 2023-08-13 06:24:58PM
# Date: 2023-08-30 11:10:52AM

# MPV Keys: https://mpv.io/manual/stable/#key-names

Expand Down Expand Up @@ -217,6 +217,8 @@ META+BS set video-zoom 0 ; show-text "Zoom resetted"
# [F1] F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 [F12]

F1 script-binding console/enable
F10 cycle-values speed 0.8 0.6 0.4 0.2 1 # Slow speed
F11 cycle-values speed 1.2 1.4 1.6 1.8 2 1 # Faster speed
F12 af toggle "lavfi=[loudnorm=I=-22:TP=-1.5:LRA=2]" # Useful audio normalization for low-audio or whispering scenes

# Numpad
Expand All @@ -234,17 +236,23 @@ KP9 ignore
KP_DEC ignore
KP_ENTER ignore

# Testing at 2023-08-13 06:25:24PM
# Testing at 2023-08-30 11:11:39AM

# Show Loaded Shaders (for dev testing)
# ` script-binding sview/shader-view

# Show progress bar on MOUSE BUTTON 2 double-click
MOUSE_BTN2_DBL show-progress
# MOUSE_BTN2_DBL show-progress

# Seek using mouse buttons
# Quieter buttons for alternative video playback seeking
# Seek using mouse wheel
# Quieter alternative for video playback seeking
# (Mechanical keyboard are common these days so this can mindful of other people
# living in the same house)
MOUSE_BTN7 osd-msg-bar seek -5 relative+keyframes
MOUSE_BTN8 osd-msg-bar seek +5 relative+keyframes
SHIFT+WHEEL_UP osd-msg-bar seek +120 relative+keyframes
SHIFT+WHEEL_DOWN osd-msg-bar seek -120 relative+keyframes
ALT+WHEEL_UP osd-msg-bar seek +30 relative+keyframes
ALT+WHEEL_DOWN osd-msg-bar seek -30 relative+keyframes
WHEEL_UP osd-msg-bar seek +1 relative+keyframes
WHEEL_DOWN osd-msg-bar seek -1 relative+keyframes
CTRL+WHEEL_UP frame-step
CTRL+WHEEL_DOWN frame-back-step

0 comments on commit 6676ad6

Please sign in to comment.