Advertisement
Guest User

Untitled

a guest
Apr 27th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ###################
  2. # MOUSE
  3. ###################
  4. MBTN_RIGHT cycle pause
  5. WHEEL_UP add volume 5
  6. WHEEL_DOWN add volume -5
  7.  
  8.  
  9. ###################
  10. # KEYBOARD
  11. ###################
  12.  
  13. # GENERAL
  14. SPACE cycle pause
  15. Ctrl+SPACE set pause yes; seek 0 absolute # stop
  16. q quit
  17. ` script-message load_random_background
  18. t cycle ontop
  19. F5 write-watch-later-config; loadfile ${path} # reload file
  20.  
  21.  
  22. # SEEKING
  23. Alt+RIGHT frame-step
  24. Alt+LEFT frame-back-step
  25. RIGHT seek 3 exact
  26. LEFT seek -3 exact
  27. Shift+RIGHT seek 60
  28. Shift+LEFT seek -60
  29. O seek 85 # skip anime openings
  30. Ctrl+RIGHT script-message load_next_file
  31. Ctrl+LEFT script-message load_previous_file
  32. . add chapter 1
  33. , add chapter -1
  34. > playlist-next
  35. < playlist-prev
  36.  
  37.  
  38. # volume
  39. UP add volume 5
  40. DOWN add volume -5
  41.  
  42.  
  43. # video speed
  44. PGDWN multiply speed 0.5
  45. PGUP multiply speed 2.0
  46. HOME set speed 1.0
  47.  
  48.  
  49. # subtitles
  50. s cycle sub
  51. Shift+UP add sub-pos -1
  52. Shift+DOWN add sub-pos +1
  53.  
  54.  
  55. # screenshots
  56. Ctrl+s async screenshot video
  57. Ctrl+S async screenshot window
  58.  
  59.  
  60. # misc
  61. c cycle-values keep-open yes no
  62. f cycle fullscreen
  63. F script-message ytdl_list_formats # show a list of available formats that can be fetched via youtube-dl
  64. i script-binding stats/display-stats
  65. I script-binding stats/display-stats-toggle
  66. l cycle-values loop-file yes no
  67. L ab-loop
  68. m cycle mute
  69. M script-message toggle_music_mode # set osc to alway and display chapters / playlist entries
  70. n cycle video; script-message my_osc_visibility # cycle video / no video and update osc visibility accordingly
  71. #p cycle taskbar-progress # windows only
  72. o script-message osc-visibility cycle
  73. r script-message Cycle_Video_Rotate 90
  74. R script-message Cycle_Video_Rotate -90
  75. R cycle interpolation
  76. S script-message streamchecker
  77. #T script-message stream_torrent
  78.  
  79.  
  80. # clipboard support
  81. Ctrl+v script-message load_file_from_clipboard
  82. Ctrl+Shift+v script-message append_file_from_clipboard
  83. Ctrl+c script-message copy_file_path_to_clipboard
  84.  
  85.  
  86. # file browser support
  87. Ctrl+o script-message open_file_dialog
  88. Ctrl+O script-message locate_current_file
  89. Ctrl+Alt+o script-message open_directory_dialog
  90.  
  91.  
  92. # go back and forward trough recent files
  93. Ctrl+z script-message back
  94. Ctrl+y script-message forward
  95.  
  96.  
  97. # select youtube-dl format
  98. #Ctrl+KP1 set ytdl-format bestvideo[height<=?1440]+bestaudio/best[height<=?1440]; write-watch-later-config; loadfile ${path}; show-text "youtube-dl format: 1440p"
  99. #Ctrl+KP4 set ytdl-format bestvideo[height<=?480]+bestaudio/best[height<=?480]; write-watch-later-config; loadfile ${path}; show-text "youtube-dl format: 480p"
  100. #Ctrl+KP7 set ytdl-format bestvideo[height<=?720]+bestaudio/best[height<=?720]; write-watch-later-config; loadfile ${path}; show-text "youtube-dl format: 720p"
  101. #KP1 set ytdl-format bestvideo[height<=?1440]+bestaudio/best[height<=?1440]; show-text "youtube-dl format: 1440p"
  102. #KP4 set ytdl-format bestvideo[height<=?480]+bestaudio/best[height<=?480]; show-text "youtube-dl format: 480p"
  103. #KP7 set ytdl-format bestvideo[height<=?720]+bestaudio/best[height<=?720]; show-text "youtube-dl format: 720p"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement