1. Browse the website and when you find an album that you want to download, click to download the .m3u playlist-file (where it says 'Play all tracks...'). You can choose hifi, lofi ogg etc...
2. Now open terminal in the directory where you downloaded the playlist, and type:
wget -i hifi.m3u
(If you downloaded the hifi)
Wget will now automatically download all the urls in that file on to your computer :)
Or...
One can also write a simple script that creates the appropriate folders and downloads the music there, as I did.
Here is my magnadown.sh, that I have saved into /usr/bin for global use:
ARTIST=`cat hifi.m3u | head -2 | tail -1 | cut -d "," -f2 | cut -d "-" -f1`
ALBUM=`cat hifi.m3u | head -2 | tail -1 | cut -d "," -f2 | cut -d "-" -f2`
mkdir -p "/home/artharchist/Music/$ARTIST/$ALBUM"
mv hifi.m3u "/home/artharchist/Music/$ARTIST/$ALBUM"
cd "/home/artharchist/Music/$ARTIST/$ALBUM"
wget -i hifi.m3u





















