Index of /riscv64/DC-ROMA-II-Pad/Tools/mpv/
Name | Last Modified | Size | Type |
../ | | - | Directory |
README.txt | 2024-Nov-21 20:00:52 | 0.5K | text/plain; charset=utf-8 |
# MPV works very well on the DC-ROMA riscv Pad II
# Make sure you have ffmpeg => 7.1 compiled
git clone https://github.com/mpv-player/mpv
cd mpv
meson setup build
meson compile -C build
sudo meson install -C build
# playing video files is best via
mpv -vo=gpu-mext --gpu-api=vulkan video.mp4
# you can create a wrapper like this (and call it mplayer in /usr/local/bin)
#!/bin/sh
if [ -z "$1" ]
then
/usr/local/bin/mpv
exit
fi
/usr/local/bin/mpv -vo=gpu-next --gpu-api=vulkan "$1"