feat: basic playback functionality

This commit is contained in:
2025-08-26 13:51:06 +02:00
parent 30b3a44a98
commit 053b594608
3 changed files with 166 additions and 8 deletions

View File

@@ -21,3 +21,19 @@ else
exit 1
fi
export JQ
if command -v "mpv" >/dev/null; then
MPV="mpv"
else
err "Did not find mpv."
exit 1
fi
export MPV
if command -v "socat" >/dev/null; then
SOCAT="socat"
else
err "Did not find socat."
exit 1
fi
export SOCAT