6.9 KiB
Executable file
irs: The Ironic Repositioning System
A music scraper that understands your metadata needs.
irs
is a command-line application that downloads audio and metadata in order
to package an mp3 with both. Extensible, the user can download individual
songs, entire albums, or playlists from Spotify.
Table of Contents
Usage
~ $ irs -h
Usage: irs [--help] [--version] [--install]
[-s <song> -a <artist>]
[-A <album> -a <artist>]
[-p <playlist> -a <username>]
Arguments:
-h, --help Show this help message and exit
-v, --version Show the program version and exit
-i, --install Download binaries to config location
-c, --config Show config file location
-a, --artist <artist> Specify artist name for downloading
-s, --song <song> Specify song name to download
-A, --album <album> Specify the album name to download
-p, --playlist <playlist> Specify the playlist name to download
Examples:
$ irs --song "Bohemian Rhapsody" --artist "Queen"
# => downloads the song "Bohemian Rhapsody" by "Queen"
$ irs --album "Demon Days" --artist "Gorillaz"
# => downloads the album "Demon Days" by "Gorillaz"
$ irs --playlist "a different drummer" --artist "prakkillian"
# => downloads the playlist "a different drummer" by the user prakkillian
Demo
Installation
Pre-built
Just download the latest release for your platform here.
Note that the binaries right now have only been tested on WSL. They should run on most linux distros, and OS X, but if they don't please make an issue above.
From Source
If you're one of those cool people who compiles from source
- Install crystal-lang
(
https://crystal-lang.org/install/
) - Clone it (
git clone https://github.com/cooperhammond/irs
) - CD it (
cd irs
) - Build it (
shards build
)
Setup
- Create a
.yaml
config file somewhere on your system (usually~/.irs/
) - Copy the following into it
binary_directory: ~/.irs/bin music_directory: ~/Music client_key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX client_secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX single_folder_playlist: enabled: true retain_playlist_order: true unify_into_album: false
- Set the environment variable
IRS_CONFIG_LOCATION
pointing to that file - Go to
https://developer.spotify.com/dashboard/
- Log in or create an account
- Click
CREATE A CLIENT ID
- Enter all necessary info, true or false, continue
- Find your client key and client secret
- Copy each respectively into the X's in your config file
- Run
irs --install
and answer the prompts!
You should be good to go! Run the file from your command line to get more help on usage or keep reading!
Config
You may have noticed that there's a config file with more than a few options. Here's what they do:
binary_directory: ~/.irs/bin
music_directory: ~/Music
client_key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
client_secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
single_folder_playlist:
enabled: true
retain_playlist_order: true
unify_into_album: false
binary_directory
: a path specifying where the downloaded binaries should be placedmusic_directory
: a path specifying where downloaded mp3s should be placed. Note that there will be more structure created inside that folder, usually in the format ofmusic-dir>artist-name>album-name>track
client_key
: a client key from your spotify API applicationclient_secret
: a client secret key from your spotify API applicationsingle_folder_playlist/enabled
: if set to true, all mp3s from a downloaded playlist will be placed in the same folder.single_folder_playlist/retain_playlist_order
: if set to true, the track numbers of the mp3s of the playlist will be overwritten to correspond to their place in the playlistsingle_folder_playlist/unify_into_album
: if set to true, will overwrite the album name and album image of the mp3 with the title of your playlist and the image for your playlist respectively
How it works
At it's core irs
downloads individual songs. It does this by interfacing
with the Spotify API, grabbing metadata, and then searching Youtube for a video
containing the song's audio. It will download the video using
youtube-dl
, extract the audio using
ffmpeg
, and then pack the audio and metadata together
into an MP3.
From the core, it has been extended to download the index of albums and playlists through the spotify API, and then iteratively use the method above for downloading each song.
It used to be in python, but
- I wasn't a fan of python's limited ability to distribute standalone binaries
- It was a charlie foxtrot of code that I made when I was little and I wanted to refine it
crystal-lang
made some promises and I was interested in seeing how well it did (verdict: if you're building high-level tools you want to run quickly and distribute, it's perfect)
Contributing
Any and all contributions are welcome. If you think of a cool feature, send a PR or shoot me an email. If you think something could be implemented better, please shoot me an email. If you like what I'm doing here, pretty please shoot me an email.
- Fork it (https://github.com/your-github-user/irs/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request