em312s0n wrote:LordKordus wrote:em312s0n wrote:Hello, does anyone have experience in getting SVP to work in Steam deck?. I've installed VLC via the discover app and installed the VLC support from the installer but it doesn't appear that it working.
Install mpv from the discover app, it's built with vapoursynth and should work.
Unfortunately, it doesn't work. I used the 'open file via mpv...' option in SVP. video didn't play. I tried opening the file from mpv itself but it wasn't smoothed. thank you though
Sorry, I forgot an important part. You need to configure MPV, so it knows where to get SVP's work.
With your file explorer, you can create mpv.conf file in ~/.var/app/io.mpv.Mpv/config/mpv and save this inside of it:
profile=svp
hwdec=auto-copy
hwdec-codecs=all
[svp]
input-ipc-server=/tmp/mpvsocket # Receives input from SVP
hr-seek-framedrop=no # Fixes audio desync
resume-playback=no # Not compatible with SVP
# Can fix stuttering in some cases, in other cases probably causes it. Try it if you experience stuttering.
#opengl-early-flush=yes
Or alternatively just run this in the terminal, this does it for you:
echo 'profile=svp
hwdec=auto-copy
hwdec-codecs=all
[svp]
input-ipc-server=/tmp/mpvsocket # Receives input from SVP
hr-seek-framedrop=no # Fixes audio desync
resume-playback=no # Not compatible with SVP
# Can fix stuttering in some cases, in other cases probably causes it. Try it if you experience stuttering.
#opengl-early-flush=yes' > ~/.var/app/io.mpv.Mpv/config/mpv/mpv.conf
That should make it work. Open the video normally through a file explorer while SVP is running.
Note: This part is related to HW decoding, not SVP, if it gives you issues, remove it:
hwdec=auto-copy
hwdec-codecs=all