From 7680433c6d68d1a208fb00bd3f02246da3e5bf3e Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 8 Mar 2022 11:10:17 -0500 Subject: [PATCH] mpv: Improve rendering quality The default mpv settings use traditional rendering methods in order to support older hardware. Since we're running on modern hardware, we can take advantage of the higher quality settings that mpv offers. --- mpv/.config/mpv/mpv.conf | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/mpv/.config/mpv/mpv.conf b/mpv/.config/mpv/mpv.conf index 369f438a..6cf1136a 100644 --- a/mpv/.config/mpv/mpv.conf +++ b/mpv/.config/mpv/mpv.conf @@ -1,5 +1,5 @@ # New Start: A modern Arch workflow built with an emphasis on functionality. -# Copyright (C) 2017 Donovan Glover +# Copyright (C) 2017-2022 Donovan Glover # Always save screenshots as .png screenshot-format="png" @@ -9,3 +9,21 @@ screenshot-directory="~/Pictures/Screenshots" # Do not use the default keybindings no-input-default-bindings + +############################### +# High quality settings +############################### + +# Use high quality OpenGL options +profile=gpu-hq + +# Use best OpenGL scaling filter for quality +scale=ewa_lanczossharp +cscale=ewa_lanczossharp + +# Don't drop frames if audio/video go out of sync +video-sync=display-resample + +# Improve motion +interpolation +tscale=oversample