From da18109a2e8e18e9e822e11e6918c9fa5e1c7ee4 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 21 Mar 2025 17:04:10 +0100 Subject: [PATCH] Update yt-dlp-webui-install.sh --- install/yt-dlp-webui-install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/install/yt-dlp-webui-install.sh b/install/yt-dlp-webui-install.sh index c4c8d8a..f6182c4 100644 --- a/install/yt-dlp-webui-install.sh +++ b/install/yt-dlp-webui-install.sh @@ -17,8 +17,7 @@ install_core_deps msg_info "Installing Dependencies" sudo apt install -y \ sudo \ - ffmpeg \ - yt-dlp + ffmpeg msg_ok "Installed Dependencies" msg_info "Installing ${APPLICATION}" @@ -29,6 +28,11 @@ chmod +x /usr/local/bin/yt-dlp-webui echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt" msg_ok "Installed ${APPLICATION}" +msg_info "Installing yt-dlp" +wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp +chmod a+rx /usr/local/bin/yt-dlp +msg_ok "Installed yt-dlp" + msg_info "Setting up ${APPLICATION}" mkdir /downloads RPC_PASSWORD=$(openssl rand -base64 16) @@ -57,7 +61,7 @@ password: ${RPC_PASSWORD} queue_size: 4 # min. 2 # [optional] Full path to the yt-dlp (default: "yt-dlp") -#downloaderPath: /usr/local/bin/yt-dlp +downloaderPath: /usr/local/bin/yt-dlp # [optional] Enable file based logging with rotation (default: false) #enable_file_logging: false