-
Notifications
You must be signed in to change notification settings - Fork 7
Adding Music
Ensure you have MP3 files with proper ID3 tags setup (my blog post on this) and put a copy of them into the "Incoming" folder, then make a call to the "admin/scan/inbound/" API endpoint (this is a admin level feature in Roadie-VueJS). This scans the inbound folder, searching for additional metadata, puts found MP3 files into the "Library" folder and adds data to the database.
You can tell Roadie what Artist to use for a folder by supplying a "roadie.artist.json" file which will then populate artist to use for the music in the folder.
{
"name": "James"
}
Roadie puts music into an opinionated structure to help organize large music collections.
<storage_root>
<artist (sort name if not set then name)>
[<release year>] <release title>
<track number> <track title>
Example: M:/storage/library/Hay, Colin/[1998] Transcendental Highway/02 Don't Believe You Anymore.mp3
<storage_root>
<artist (sort name if not set then name)>
[<release year>] <release title>
<m media number> <track number> <track title>
Example: M:/storage/library/Dream Theater/[2013] Live At Luna Park/m002 04 On The Backs Of Angels.mp3
- Every audio file must have these ID3 tags populated in order to be processed:
- Artist (TPE1)
- Release Name (aka Album Title) (TALB)
- Track Title (TIT2)
- Track Year (TYER)
- Track Number (TRCK)
- All inbound music must be in MP3 format; 320 VBR 44.1k, is recommended.
- Mp3tag is a highly recommended MP3 Tag editor.
- MediaHuman's Audio Convertor is a highly recommended audio format convertor.
- Release disc number (TPOS) is used to group tracks in to media release ("CD1", "CD2", etc.)
- A track can have Track Artist (TOPE) set which overrides Album artist (TPE1).
-
- This is common on compilation albums like sound tracks, various artists, and tracks with "Featuring" or "with" artist credits.
- "Sound Track" artist is a special meta-artist as generally a sound track contains many contributing artists. It is important to have the TOPE set on each track of a "Sound Track" in order to get "Contributing" properly set on the track artist.
- Any release that has the genre of "Soundtrack" set is processed like a Sound Track
- "Various Artist" artist is a special meta-artist used to group compilation albums that are not associated to a single artist. An example is the "Now That's What I Call Music" series.