From 20c6d01385dbf6cf4bde633446c2a379c6be933d Mon Sep 17 00:00:00 2001 From: tremor021 Date: Mon, 29 Dec 2025 10:50:48 +0100 Subject: [PATCH] Sportarr: add hwaccel --- install/sportarr-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install/sportarr-install.sh b/install/sportarr-install.sh index 79d9c00e3..26d9eb14d 100644 --- a/install/sportarr-install.sh +++ b/install/sportarr-install.sh @@ -12,9 +12,13 @@ catch_errors setting_up_container network_check update_os +setup_hwaccel msg_info "Installing Dependencies" -$STD apt install -y ffmpeg +$STD apt install -y \ + ffmpeg \ + gosu \ + sqlite3 msg_ok "Installed Dependencies" fetch_and_deploy_gh_release "sportarr" "Sportarr/Sportarr" "prebuild" "latest" "/opt/sportarr" "Sportarr-linux-x64-*.tar.gz" @@ -26,6 +30,7 @@ ASPNETCORE_URLS="http://*:1867" ASPNETCORE_ENVIRONMENT="Production" DOTNET_CLI_TELEMETRY_OPTOUT=1 DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false +LIBVA_DRIVER_NAME=iHD EOF msg_ok "Setup Sportarr"