fix: download artwork for SoundCloud links

Co-authored-by: aider (gemini/gemini-2.5-pro-preview-05-06) <aider@aider.chat>
This commit is contained in:
Chaos Rogers 2025-09-09 13:06:01 +01:00
parent 95513d3901
commit e112149ee4

View file

@ -87,7 +87,7 @@ fn download_media(video_url: &str, download_path: &Path, settings: &Settings) ->
} else if video_url.contains("soundcloud.com") {
println!("[INFO] Soundcloud link detected. Using scdl...");
cmd = Command::new("scdl");
cmd.args(["-l", video_url]);
cmd.args(["-l", video_url, "-c"]);
} else {
println!("[INFO] Non-Apple Music link. Using yt-dlp...");
cmd = Command::new("yt-dlp");