dotfiles

Dotfiles.
git clone git://git.zepp.club/dotfiles.git
Log | Files | Refs

input.conf (6897B)


      1 ctrl+m  cycle-values audio-channels "mono" ; show-text "${?=audio-channels==mono:Audio channel is in mono mode}"
      2 
      3 WHEEL_UP      add volume 2
      4 WHEEL_DOWN    add volume -2
      5 WHEEL_LEFT    seek -10         # seek 10 seconds backward
      6 WHEEL_RIGHT   seek 10          # seek 10 seconds forward
      7 
      8 RIGHT seek  5                          # seek 5 seconds forward
      9 LEFT  seek -5                          # seek 5 seconds backward
     10 UP    seek  60                         # seek 1 minute forward
     11 DOWN  seek -60                         # seek 1 minute backward
     12 Alt+left  add video-pan-x  0.1         # move the video right
     13 Alt+right add video-pan-x -0.1         # move the video left
     14 Alt+up    add video-pan-y  0.1         # move the video down
     15 Alt+down  add video-pan-y -0.1         # move the video up
     16 Alt++     add video-zoom   0.1         # zoom in
     17 Alt+-     add video-zoom  -0.1         # zoom out
     18 ZOOMOUT   add video-zoom  -0.1         # zoom out
     19 Alt+BS set video-zoom 0 ; set video-pan-x 0 ; set video-pan-y 0 # reset zoom and pan settings
     20 PGUP add chapter 1                     # seek to the next chapter
     21 PGDWN add chapter -1                   # seek to the previous chapter
     22 Shift+PGUP seek 600                    # seek 10 minutes forward
     23 Shift+PGDWN seek -600                  # seek 10 minutes backward
     24 [ multiply speed 1/1.1                 # decrease the playback speed
     25 ] multiply speed 1.1                   # increase the playback speed
     26 { multiply speed 0.5                   # halve the playback speed
     27 } multiply speed 2.0                   # double the playback speed
     28 BS set speed 1.0                       # reset the speed to normal
     29 Shift+BS revert-seek                   # undo the previous (or marked) seek
     30 Shift+Ctrl+BS revert-seek mark         # mark the position for revert-seek
     31 q quit
     32 Q quit-watch-later                     # exit and remember the playback position
     33 q {encode} quit 4
     34 ESC set fullscreen no                  # leave fullscreen
     35 ESC {encode} quit 4
     36 p cycle pause                          # toggle pause/playback mode
     37 . frame-step                           # advance one frame and pause
     38 , frame-back-step                      # go back by one frame and pause
     39 SPACE cycle pause                      # toggle pause/playback mode
     40 > playlist-next                        # skip to the next file
     41 ENTER playlist-next                    # skip to the next file
     42 < playlist-prev                        # skip to the previous file
     43 O no-osd cycle-values osd-level 3 1    # toggle displaying the OSD on user interaction or always
     44 o show-progress                        # show playback progress
     45 P show-progress                        # show playback progress
     46 i script-binding stats/display-stats   # display information and statistics
     47 I script-binding stats/display-stats-toggle # toggle displaying information and statistics
     48 ` script-binding console/enable        # open the console
     49 z add sub-delay -0.1                   # shift subtitles 100 ms earlier
     50 Z add sub-delay +0.1                   # delay subtitles by 100 ms
     51 x add sub-delay +0.1                   # delay subtitles by 100 ms
     52 ctrl++ add audio-delay 0.100           # change audio/video sync by delaying the audio
     53 ctrl+- add audio-delay -0.100          # change audio/video sync by shifting the audio earlier
     54 Shift+g add sub-scale +0.1             # increase the subtitle font size
     55 Shift+f add sub-scale -0.1             # decrease the subtitle font size
     56 9 add volume -2
     57 / add volume -2
     58 0 add volume 2
     59 * add volume 2
     60 m cycle mute                           # toggle mute
     61 1 add contrast -1
     62 2 add contrast 1
     63 3 add brightness -1
     64 4 add brightness 1
     65 5 add gamma -1
     66 6 add gamma 1
     67 7 add saturation -1
     68 8 add saturation 1
     69 Alt+0 set current-window-scale 0.5     # halve the window size
     70 Alt+1 set current-window-scale 1.0     # reset the window size
     71 Alt+2 set current-window-scale 2.0     # double the window size
     72 d cycle deinterlace                    # toggle the deinterlacing filter
     73 r add sub-pos -1                       # move subtitles up
     74 R add sub-pos +1                       # move subtitles down
     75 t add sub-pos +1                       # move subtitles down
     76 v cycle sub-visibility                 # hide or show the subtitles
     77 Alt+v cycle secondary-sub-visibility   # hide or show the secondary subtitles
     78 V cycle sub-ass-vsfilter-aspect-compat # toggle stretching SSA/ASS subtitles with anamorphic videos to match the historical renderer
     79 u cycle-values sub-ass-override "force" "yes" # toggle overriding SSA/ASS subtitle styles with the normal styles
     80 j cycle sub                            # switch subtitle track
     81 SHARP cycle audio                      # switch audio track
     82 _ cycle video                          # switch video track
     83 T cycle ontop                          # toggle placing the video on top of other windows
     84 f cycle fullscreen                     # toggle fullscreen
     85 s screenshot                           # take a screenshot of the video in its original resolution with subtitles
     86 S screenshot video                     # take a screenshot of the video in its original resolution without subtitles
     87 Ctrl+s screenshot window               # take a screenshot of the window with OSD and subtitles
     88 Alt+s screenshot each-frame            # automatically screenshot every frame; issue this command again to stop taking screenshots
     89 w add panscan -0.1                     # decrease panscan
     90 W add panscan +0.1                     # shrink black bars by cropping the video
     91 e add panscan +0.1                     # shrink black bars by cropping the video
     92 A cycle-values video-aspect-override "16:9" "4:3" "2.35:1" "-1" # cycle the video aspect ratio ("-1" is the container aspect)
     93 PLAY cycle pause                       # toggle pause/playback mode
     94 PAUSE cycle pause                      # toggle pause/playback mode
     95 PLAYPAUSE cycle pause                  # toggle pause/playback mode
     96 PLAYONLY set pause no                  # unpause
     97 PAUSEONLY set pause yes                # pause
     98 STOP quit
     99 FORWARD seek 60                        # seek 1 minute forward
    100 REWIND seek -60                        # seek 1 minute backward
    101 NEXT playlist-next                     # skip to the next file
    102 PREV playlist-prev                     # skip to the previous file
    103 VOLUME_UP add volume 2
    104 VOLUME_DOWN add volume -2
    105 MUTE cycle mute                        # toggle mute
    106 CLOSE_WIN quit
    107 CLOSE_WIN {encode} quit 4
    108 ctrl+w quit
    109 E cycle edition                        # switch edition
    110 l ab-loop                              # set/clear A-B loop points
    111 L cycle-values loop-file "inf" "no"    # toggle infinite looping
    112 ctrl+c quit 4
    113 DEL script-binding osc/visibility      # cycle OSC visibility between never, auto (mouse-move) and always
    114 ctrl+h cycle-values hwdec "auto-safe" "no"  # toggle hardware decoding
    115 F8 show-text ${playlist}               # show the playlist
    116 F9 show-text ${track-list}             # show the list of video, audio and sub tracks
    117