Compare commits

...

2 Commits

Author SHA1 Message Date
11ab78bf0a MPV HDR 2025-04-02 15:02:13 -05:00
5cf196f7b9 Add go path to zsh, and update mpv config. 2025-01-18 12:34:20 -06:00
3 changed files with 1281 additions and 24 deletions

View File

@ -22,8 +22,6 @@
# values. Calling mpv with --list-options is a nice way to see the default
# values for most options.
input-unix-socket=~/.config/mpv/mpv.sock
##################
# video settings #
##################
@ -109,36 +107,47 @@ alang=jpn,en
# If the file seems to be valid UTF-8, prefer UTF-8.
#sub-codepage=utf8:cp1256
# Enable hardware decoding if available. Often, this requires using an certain
# video output, otherwise no hardware decoding will be used.
#hwdec=auto
# Configure playback GPU settings.
vo=gpu-next
profile=gpu-hq
############
# Profiles #
############
gpu-context=waylandvk
gpu-api=vulkan
target-colorspace-hdr=auto
target-colorspace-hint=yes
# The options declared as part of profiles override global default settings,
# but only take effect when the profile is active.
hwdec=no
# The following profile can be enabled on the command line with: --profile=vdpau
interpolation=yes
tscale=box
tscale-window=sphinx
tscale-radius=1.0
tscale-clamp=0.0
#[vdpau]
# The profile forces the vdpau VO.
#vo=vdpau
# Use hardware decoding (this might break playback of some h264 files)
#hwdec=vdpau
# Most video filters do not work with hardware decoding.
#vf-clr=yes
scale=ewa_lanczos
scale-blur=0.981251
dscale=catmull_rom
#vo=opengl-hq
#vo=opengl-hq:interpolation
hwdec=vaapi
#hwdec=cuda
#hwdec=auto
vo=gpu
scale-antiring=0.5
dscale-antiring=0.5
cscale-antiring=0.5
deband=yes
deband-iterations=4
deband-threshold=35
deband-range=16
deband-grain=4
dither=error-diffusion
dither-depth=auto
sigmoid-upscaling=yes
correct-downscaling=yes
video-sync=display-resample
framedrop=vo
# glsl-shader="~~/shaders/ArtCNN_C4F16.glsl"
#vf=dejudder
#vf=format=yuv420p,vapoursynth=~~/motioninterpolation.vpy:4:4

File diff suppressed because it is too large Load Diff

1
.zshrc
View File

@ -11,6 +11,7 @@ export TERM="konsole"
export BROWSER="firefox"
export VIDEO="mpv"
export OPENER="xdg-open"
export GOPATH="$HOME/go"
export ZDOTDIR="$HOME/.config/zsh"