I would like to move away from using spotify for music. Are there any torrenting sites where I can torrent music with high quality audio (~320kbps) tagged properly?

you are viewing a single comment's thread
view the rest of the comments
[–] 1 point 10 months ago (2 children)

I would love to do this from Spotify. Can you share any code snippets or examples?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 10 months ago*

    this was the script I used to download my youtube playlist, you can modify it to do spotify also:

    #!/bin/bash  
    
    PLAYLIST_URL="$1"  
    
    if [ -z "$PLAYLIST_URL" ]; then  
        echo "Usage: $0 <youtube_playlist_url>"  
        exit 1  
    fi  
    
    # Log file with timestamp  
    LOG_FILE="$HOME/music-downloads/download_$(date +%Y%m%d_%H%M%S).log"  
    
    echo "Starting download at $(date)" | tee "$LOG_FILE"  
    echo "Playlist: $PLAYLIST_URL" | tee -a "$LOG_FILE"  
    echo "----------------------------------------" | tee -a "$LOG_FILE"  
    
    # Run sldl with YouTube playlist  
    sldl "$PLAYLIST_URL" --yt-dlp 2>&1 | tee -a "$LOG_FILE"  
    
    echo "----------------------------------------" | tee -a "$LOG_FILE"  
    echo "Download completed at $(date)" | tee -a "$LOG_FILE"  
    
    

    I just ran this in a screen session. You don't have to log everything but I did it so I could check to see what songs weren't on soulseek from my playlist.

  • source
  • parent