From 9288ac626526b3294c3fa72723e804b056067322 Mon Sep 17 00:00:00 2001 From: Marvin Schenkel Date: Wed, 22 Oct 2025 19:48:39 +0200 Subject: [PATCH] YTM: Also install default ytdlp dependencies (#2534) Also install default ytdlp dependencies --- music_assistant/providers/ytmusic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/providers/ytmusic/__init__.py b/music_assistant/providers/ytmusic/__init__.py index 42583049..771eeb1d 100644 --- a/music_assistant/providers/ytmusic/__init__.py +++ b/music_assistant/providers/ytmusic/__init__.py @@ -120,7 +120,7 @@ YT_PERSONAL_PLAYLISTS = ( ) DYNAMIC_PLAYLIST_TRACK_LIMIT = 300 YTM_PREMIUM_CHECK_TRACK_ID = "dQw4w9WgXcQ" -PACKAGES_TO_INSTALL = ("yt-dlp", "bgutil-ytdlp-pot-provider") +PACKAGES_TO_INSTALL = ("yt-dlp[default]", "bgutil-ytdlp-pot-provider") SUPPORTED_FEATURES = { ProviderFeature.LIBRARY_ARTISTS, -- 2.34.1