Split mpv to own file to allow configuration.
This commit is contained in:
parent
44bb051d03
commit
a6c0682541
|
|
@ -7,7 +7,6 @@ apt-get -y install gitk
|
||||||
apt-get -y install zsync
|
apt-get -y install zsync
|
||||||
apt-get -y install jq
|
apt-get -y install jq
|
||||||
apt-get -y install pv
|
apt-get -y install pv
|
||||||
apt-get -y install mpv
|
|
||||||
apt-get -y install rar
|
apt-get -y install rar
|
||||||
apt-get -y install kpartx
|
apt-get -y install kpartx
|
||||||
apt-get -y install inxi
|
apt-get -y install inxi
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
apt-get -y install mpv
|
||||||
|
|
||||||
|
mkdir -p ~/.config/mpv
|
||||||
|
|
||||||
|
## https://www.dotslashlinux.com/2017/03/31/optimal-mpv-configuration/
|
||||||
|
## Low cpu
|
||||||
|
#cat > ~/.config/mpv/mpv.conf<< 'EOF'
|
||||||
|
#profile=opengl-hq
|
||||||
|
#scale=ewa_lanczossharp
|
||||||
|
#cscale=ewa_lanczossoft
|
||||||
|
#dscale=mitchell
|
||||||
|
#scale-antiring=0.7
|
||||||
|
#cscale-antiring=0.7
|
||||||
|
#dither-depth=auto
|
||||||
|
#correct-downscaling=yes
|
||||||
|
#sigmoid-upscaling=yes
|
||||||
|
#deband=no
|
||||||
|
#volume-max=100
|
||||||
|
#hwdec=vaapi
|
||||||
|
#EOF
|
||||||
|
#
|
||||||
|
## Quality over performance
|
||||||
|
#cat > ~/.config/mpv/mpv.conf << 'EOF'
|
||||||
|
#profile=opengl-hq
|
||||||
|
#scale=ewa_lanczossharp
|
||||||
|
#cscale=ewa_lanczossoft
|
||||||
|
#dscale=mitchell
|
||||||
|
#scale-antiring=0.7
|
||||||
|
#cscale-antiring=0.7
|
||||||
|
#dither-depth=auto
|
||||||
|
#correct-downscaling=yes
|
||||||
|
#sigmoid-upscaling=yes
|
||||||
|
#deband=no
|
||||||
|
#volume-max=100
|
||||||
|
#hwdec=auto
|
||||||
|
#EOF
|
||||||
Loading…
Reference in New Issue