├── input.conf ├── manager.json ├── mpv-version.txt ├── mpv.conf ├── script-opts ├── autocrop.conf ├── autoload.conf ├── celebi.conf ├── coverart.conf ├── coverart.jpg ├── evafast.conf ├── groupwatch_sync.conf ├── pointer-event.conf ├── trackselect.conf ├── uosc.conf └── webm.conf ├── scripts └── README.md ├── shaders ├── README.md └── noise-luma-adaptive.glsl └── vs ├── chicken.py └── scan_interlaced.py /input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/input.conf -------------------------------------------------------------------------------- /manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/manager.json -------------------------------------------------------------------------------- /mpv-version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/mpv-version.txt -------------------------------------------------------------------------------- /mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/mpv.conf -------------------------------------------------------------------------------- /script-opts/autocrop.conf: -------------------------------------------------------------------------------- 1 | auto=no 2 | -------------------------------------------------------------------------------- /script-opts/autoload.conf: -------------------------------------------------------------------------------- 1 | images=no 2 | -------------------------------------------------------------------------------- /script-opts/celebi.conf: -------------------------------------------------------------------------------- 1 | volume=yes 2 | -------------------------------------------------------------------------------- /script-opts/coverart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/script-opts/coverart.conf -------------------------------------------------------------------------------- /script-opts/coverart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/script-opts/coverart.jpg -------------------------------------------------------------------------------- /script-opts/evafast.conf: -------------------------------------------------------------------------------- 1 | show_speed_toggled=no 2 | -------------------------------------------------------------------------------- /script-opts/groupwatch_sync.conf: -------------------------------------------------------------------------------- 1 | max_speed=2 2 | show_group_pos=yes 3 | -------------------------------------------------------------------------------- /script-opts/pointer-event.conf: -------------------------------------------------------------------------------- 1 | left_double=cycle fullscreen 2 | -------------------------------------------------------------------------------- /script-opts/trackselect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/script-opts/trackselect.conf -------------------------------------------------------------------------------- /script-opts/uosc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/script-opts/uosc.conf -------------------------------------------------------------------------------- /script-opts/webm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/script-opts/webm.conf -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/scripts/README.md -------------------------------------------------------------------------------- /shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/shaders/README.md -------------------------------------------------------------------------------- /shaders/noise-luma-adaptive.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/shaders/noise-luma-adaptive.glsl -------------------------------------------------------------------------------- /vs/chicken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/vs/chicken.py -------------------------------------------------------------------------------- /vs/scan_interlaced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po5/mpv-config/HEAD/vs/scan_interlaced.py --------------------------------------------------------------------------------