I made a script that scanned files that I installed previously with mp3 and the newer ones with flac, to find the ones I was missing on flac that I had installed with mp3. Now I have a long list of song names that I downloaded with mp3 that I want to give spotdl to download with flac. Could I edit the config or make a script or give spotdl the list of song names to get it to download it? Would I have to format the list a certain way? any help is appreciated.
#A Way To Download A Large Quantity Of Songs From A List Of Song Names
8 messages · Page 1 of 1 (latest)
Please continue adding more information into this thread.
You should include the following information:
spotDL Version
Eg. 4.0.0
Operating System
Eg. Windows 22H2
The Command You Ran
Please include Spotify links.
Screenshots or Pasted Error Messages
Only send these if they are relevant.
To send pasted error messages use three backticks (```)
Here's info on how to use code blocks.
@vital elk
spotDL matching isnt the best with song names instead of links, but you can try.
I'd probably parse the file into command line (basic linux terminal usage), or write a script to iterate through the file - see code reference https://spotdl.rtfd.io
Download your Spotify playlists and songs along with album art and metadata
I ended up asking chatgpt to create a batch file, removed all spaces and other charectars that seperated the song, and just individually ran each song
after scraping tyhe list
@echo off
spotdl download TiptoeGiants-BangBangBang
spotdl download JAY-Z,DMX-MoneyCashHoes
spotdl download KanyeWest,RickRoss-DevilInANewDressAlbumVersionEdited
spotdl download Quavo,Takeoff-HOTELLOBBYUncPhewACOLORSSHOW
spotdl download LordNekros,TrapMusicNow-MozartSerenade-Remix
spotdl download LilBaby,MoneybaggYo-AllOfASudden
spotdl download TheWeatherGirls-ItsRainingMen-SingleVersion
spotdl download TaylorSwift-ME!feat.BrendonUrieofPanic!AtTheDisco
spotdl download Zyrex-LoveMe
spotdl download PengLexer-ChingChengHanji-LofiRemix
spotdl download Fortye,staticamour-ViolentNites
spotdl download SundaySchoolSongs,WeeSing-RiseandShineGiveGodtheGlory
spotdl download BabySmoove-LoadManagement
spotdl download Screenshot00-27-49
spotdl download RoyishGoodLooks-ImMr.Meeseeks
spotdl download RickyMartin-ElUltimoAdiós-VariosArtistasVersion
spotdl download JAY-Z-Crown
spotdl download Gunna-BankingOnMe
echo All downloads initiated.
pause