From 75dc938ac0ce9a10417effb33ec44bb1575e43af Mon Sep 17 00:00:00 2001 From: JappeHallunken Date: Fri, 1 May 2026 22:52:36 +0200 Subject: [PATCH 1/3] replaced youtube-dl with yt-dlp (only text, under the hood it was already downloading yt-dlp) --- README.md | 2 +- dietpi/dietpi-software | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 636f463d98..141ef9e49b 100644 --- a/README.md +++ b/README.md @@ -303,7 +303,7 @@ Links to hardware and software manufacturers, sources and build instructions use - [Snapcast](https://github.com/snapcast/snapcast) - [K3s](https://github.com/k3s-io/k3s) - [Synapse](https://github.com/matrix-org/synapse) -- [youtube-dl](https://github.com/ytdl-org/youtube-dl) +- [yt-dlp](https://github.com/yt-dlp/yt-dlp) - [PostgreSQL](https://git.postgresql.org/gitweb/?p=postgresql.git) - [OpenJDK](https://github.com/openjdk) - [Blynk Server](https://github.com/Peterkn2001/blynk-server) diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index 69b6d56a36..cfcf4f6312 100755 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -742,10 +742,10 @@ Available commands: aSOFTWARE_DEPS[$software_id]='17 130' #------------------ software_id=195 - aSOFTWARE_NAME[$software_id]='youtube-dl' + aSOFTWARE_NAME[$software_id]='yt-dlp' aSOFTWARE_DESC[$software_id]='Download videos from YouTube and other sites (using yt-dlp fork)' aSOFTWARE_CATX[$software_id]=3 - aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/bittorrent/#youtube-dl' + aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/bittorrent/#yt-dlp' aSOFTWARE_DEPS[$software_id]='7' #------------------ software_id=169 @@ -5575,7 +5575,7 @@ _EOF_ G_EXEC systemctl stop webmin fi - if To_Install 195 # youtube-dl + if To_Install 195 # yt-dlp then aDEPS=('python3') Download_Install 'https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp' /usr/local/bin/yt-dlp @@ -13195,7 +13195,7 @@ _EOF_ [[ -f '/usr/local/bin/node-red-pi' ]] && G_EXEC rm /usr/local/bin/node-red-pi fi - if To_Uninstall 195 # youtube-dl + if To_Uninstall 195 # yt-dlp then G_EXEC rm -f /usr/local/bin/{yt-dlp,youtube-dl,youtube-dl-py2} fi From a29cc999a14ff510761aeea5a4505e6058d4d6c6 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 4 May 2026 15:11:23 +0200 Subject: [PATCH 2/3] dietpi-survey_report: rename youtube-dl => yt-dlp --- .meta/dietpi-survey_report | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.meta/dietpi-survey_report b/.meta/dietpi-survey_report index 4addaecee7..0f7350e36c 100755 --- a/.meta/dietpi-survey_report +++ b/.meta/dietpi-survey_report @@ -396,7 +396,7 @@ shopt -s extglob # +(expr) syntax [192]='Snapcast Client' [193]='K3s' [194]='PostgreSQL' - [195]='youtube-dl' + [195]='yt-dlp' [196]='Java JRE' [197]='Box64' [198]='File Browser' From 41631bc6f4343df2f2f475ebfffd85795529ead2 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 4 May 2026 15:12:31 +0200 Subject: [PATCH 3/3] dietpi-software: yt-dlp: make clear it is a youtube-dl successor --- dietpi/dietpi-software | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index cfcf4f6312..57f73bac70 100755 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -743,7 +743,7 @@ Available commands: #------------------ software_id=195 aSOFTWARE_NAME[$software_id]='yt-dlp' - aSOFTWARE_DESC[$software_id]='Download videos from YouTube and other sites (using yt-dlp fork)' + aSOFTWARE_DESC[$software_id]='Download videos from YouTube and other sites (youtube-dl successor)' aSOFTWARE_CATX[$software_id]=3 aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/bittorrent/#yt-dlp' aSOFTWARE_DEPS[$software_id]='7'