/install dj-mp3-sourcer
DJ MP3 Sourcer
DJ-oriented music downloading skill. Takes any music link and finds the best available source, prioritizing extended mixes and MP3 320k output.
⚠️ Legal Notice: This skill is intended for downloading music you have the right to access — purchases, free releases, creative commons, etc. Respect copyright laws in your jurisdiction. The author is not responsible for misuse.
Dependencies
pip install yt-dlp spotdl
brew install ffmpeg # needed by yt-dlp for audio extraction
# optional
pip install bandcamp-dl # for free bandcamp downloads
Source Priority
Search in this order — stop at the first match:
- Bandcamp — supports artists directly, often has extended mixes
- Beatport — DJ-standard, has BPM/key metadata, extended mixes
- Amazon Music — digital purchase option
- Spotify (via
spotdl) — good metadata/tagging, 320k MP3 - YouTube (via
yt-dlp) — fallback, always works
For paid sources (bandcamp, beatport, amazon), surface the purchase link with price. For free sources, download directly.
If free only mode is enabled, skip steps 1-3 and go straight to spotdl → yt-dlp.
Core Rule: Prefer Extended Mixes
Always prefer the extended mix over radio edits. An extended mix from a lower-priority source beats a radio edit from a higher-priority one.
Example: extended mix on YouTube > radio edit on Spotify.
When searching, append "extended mix" to queries. If only a radio edit exists, note it in the output.
Workflow
- Identify the track — extract artist + title:
yt-dlp --dump-json "\x3Curl>" | jq '{title, artist: .artist // .uploader, duration}' - Search each source using web_search:
"\x3Cartist> \x3Ctitle> extended mix site:bandcamp.com" "\x3Cartist> \x3Ctitle> extended mix site:beatport.com" "\x3Cartist> \x3Ctitle> site:amazon.com/music" - Download or link — free sources download; paid sources return purchase URL with price
- Tag the file — artist, title, album, cover art. Note BPM/key if available from beatport.
Download Commands
spotdl
spotdl download "\x3Cspotify-url>" --output "{artist} - {title}" --format mp3 --bitrate 320k
yt-dlp
yt-dlp -x --audio-format mp3 --audio-quality 0 \
--embed-thumbnail --add-metadata \
--metadata-from-title "%(artist)s - %(title)s" \
-o "%(artist)s - %(title)s.%(ext)s" "\x3Curl>"
Post-Download: Filename Normalization
yt-dlp filenames are often messy (NA - prefixes, (Official Video) suffixes, label names, wrong artist credits). Always run the normalization script after downloads complete.
Usage:
# 1. Write the tracklist as JSON (from the parsed tracklist in step 2)
cat > /tmp/tracklist.json \x3C\x3C 'EOF'
[{"artist": "Karol G", "title": "Ivonny Bonita"}, {"artist": "Doja Cat", "title": "Woman (Never Dull's Disco Rework)"}]
EOF
# 2. Run the normalize script
scripts/normalize-filenames.sh ~/Downloads/set-name /tmp/tracklist.json
The script fuzzy-matches each mp3 in the directory to a tracklist entry and renames to clean Artist - Title.mp3 format. Unmatched files are left untouched.
The tracklist is the source of truth for filenames, not YouTube metadata.
Configuration
| Setting | Default | Notes |
|---|---|---|
| Output directory | ~/Downloads/ |
Where files are saved (subfolder per set when used with dj-set-ripper) |
| Format | mp3 320k | High-bitrate MP3; configurable to flac if needed |
| Extended mix | always | Prefer extended/original mix over radio edit |
| Free only | false | When true, skip paid sources (bandcamp, beatport, amazon) — only use spotdl and yt-dlp |
Batch Processing
When given multiple links, process in parallel using sub-agents (sessions_spawn). Report results as each track completes.
Edge Cases
- DJ mixes / long sets — download via yt-dlp directly, skip source searching
- Unavailable tracks — report clearly, suggest alternatives if found
- Region-locked content — note restriction, try alternative sources
- Remix vs original — if the link is a specific remix, search for that exact remix, not the original
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install dj-mp3-sourcer - After installation, invoke the skill by name or use
/dj-mp3-sourcer - Provide required inputs per the skill's parameter spec and get structured output
What is DJ mp3 sourcer?
Download music from links (YouTube, Spotify, etc.) by finding the best available source. Searches across platforms in priority order: Bandcamp, Beatport, Ama... It is an AI Agent Skill for Claude Code / OpenClaw, with 826 downloads so far.
How do I install DJ mp3 sourcer?
Run "/install dj-mp3-sourcer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is DJ mp3 sourcer free?
Yes, DJ mp3 sourcer is completely free (open-source). You can download, install and use it at no cost.
Which platforms does DJ mp3 sourcer support?
DJ mp3 sourcer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created DJ mp3 sourcer?
It is built and maintained by robin (@robinnnnn); the current version is v1.0.2.