From f4da16078ee540f485dc29f0267d9281dbec6270 Mon Sep 17 00:00:00 2001 From: hgy59 Date: Sun, 3 Nov 2024 20:15:51 +0100 Subject: [PATCH] tvheadend: fix path to ffmpeg(7) --- spk/tvheadend/src/service-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spk/tvheadend/src/service-setup.sh b/spk/tvheadend/src/service-setup.sh index 6b7421339a0..b57e22fbdaa 100644 --- a/spk/tvheadend/src/service-setup.sh +++ b/spk/tvheadend/src/service-setup.sh @@ -1,7 +1,7 @@ # Define python311 binary path PYTHON_DIR="/var/packages/python311/target/bin" # Define ffmpeg binary path -FFMPEG_DIR="/var/packages/ffmpeg/target/bin" +FFMPEG_DIR="/var/packages/ffmpeg7/target/bin" # Add local bin, virtualenv along with ffmpeg and python311 to the default PATH PATH="${SYNOPKG_PKGDEST}/env/bin:${SYNOPKG_PKGDEST}/bin:${PYTHON_DIR}:${FFMPEG_DIR}:${PATH}"