├── .gitignore ├── README.md ├── fonts ├── Material-Design-Iconic-Font.ttf ├── Material-Design-Iconic-Round.ttf ├── osc.ttf ├── stats mono.ttf ├── stats.ttf └── subs.ttf ├── input.conf ├── mpv_linux.conf ├── mpv_osx.conf ├── mpv_windows.conf ├── script-opts ├── playlistmanager.conf ├── quality-menu.conf └── stats.conf ├── scripts ├── quality-menu.lua ├── Mac_Integration.lua ├── acompressor.lua ├── appendURL.lua ├── audio-osc.lua ├── autoload.lua ├── modernx.lua ├── playlistmanager.lua ├── quality-menu.lua ├── seek-to.lua └── webm.lua └── shaders ├── CfL_Prediction.glsl ├── FastBilateral.glsl ├── JointBilateral.glsl └── ravu-zoom-ar-r3-rgb.hook /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/README.md -------------------------------------------------------------------------------- /fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /fonts/Material-Design-Iconic-Round.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/Material-Design-Iconic-Round.ttf -------------------------------------------------------------------------------- /fonts/osc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/osc.ttf -------------------------------------------------------------------------------- /fonts/stats mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/stats mono.ttf -------------------------------------------------------------------------------- /fonts/stats.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/stats.ttf -------------------------------------------------------------------------------- /fonts/subs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/fonts/subs.ttf -------------------------------------------------------------------------------- /input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/input.conf -------------------------------------------------------------------------------- /mpv_linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/mpv_linux.conf -------------------------------------------------------------------------------- /mpv_osx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/mpv_osx.conf -------------------------------------------------------------------------------- /mpv_windows.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/mpv_windows.conf -------------------------------------------------------------------------------- /script-opts/playlistmanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/script-opts/playlistmanager.conf -------------------------------------------------------------------------------- /script-opts/quality-menu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/script-opts/quality-menu.conf -------------------------------------------------------------------------------- /script-opts/stats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/script-opts/stats.conf -------------------------------------------------------------------------------- /scripts/ quality-menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/ quality-menu.lua -------------------------------------------------------------------------------- /scripts/Mac_Integration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/Mac_Integration.lua -------------------------------------------------------------------------------- /scripts/acompressor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/acompressor.lua -------------------------------------------------------------------------------- /scripts/appendURL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/appendURL.lua -------------------------------------------------------------------------------- /scripts/audio-osc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/audio-osc.lua -------------------------------------------------------------------------------- /scripts/autoload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/autoload.lua -------------------------------------------------------------------------------- /scripts/modernx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/modernx.lua -------------------------------------------------------------------------------- /scripts/playlistmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/playlistmanager.lua -------------------------------------------------------------------------------- /scripts/quality-menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/quality-menu.lua -------------------------------------------------------------------------------- /scripts/seek-to.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/seek-to.lua -------------------------------------------------------------------------------- /scripts/webm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/scripts/webm.lua -------------------------------------------------------------------------------- /shaders/CfL_Prediction.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/shaders/CfL_Prediction.glsl -------------------------------------------------------------------------------- /shaders/FastBilateral.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/shaders/FastBilateral.glsl -------------------------------------------------------------------------------- /shaders/JointBilateral.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/shaders/JointBilateral.glsl -------------------------------------------------------------------------------- /shaders/ravu-zoom-ar-r3-rgb.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsubajashi/mpv-settings/HEAD/shaders/ravu-zoom-ar-r3-rgb.hook --------------------------------------------------------------------------------