Created
June 19, 2026 21:31
-
-
Save jaoxford/014115da4cdc663fd6c46afdef8e5f30 to your computer and use it in GitHub Desktop.
Download all flac tunes from khinsider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BASE="https://downloads.khinsider.com" | |
| ALBUM="/game-soundtracks/album/beatmania-iidx-18-resort-anthem-original-soundtrack-2011" | |
| curl -s "$BASE$ALBUM" \ | |
| | grep -oP 'href="/game-soundtracks/album/[^"]+\.mp3"' \ | |
| | sed 's/href="//;s/"//' \ | |
| | sort -u \ | |
| | while read -r songpath; do | |
| flac=$(curl -s "$BASE$songpath" | grep -oP 'https://[^"]+\.flac' | head -1) | |
| [ -n "$flac" ] && wget -q --show-progress -nc "$flac" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment