Skip to content
Pat Ripley edited this page Oct 27, 2020 · 1 revision

The main chunk of this project, one of the reasons I created it.

The gist: Moose can automatically tag mp3 files by using the file name and the file location, as long as your file structure matches the following:

LIBRARY    
  └─── ArtistName
  │    └─── [YEAR] AlbumName
  │    │     │   01 TrackTitle.mp3
  │    │     │   02 TrackTitle.mp3
  │    │     │   ...
  │    │     │   cover.png
  │    │
  |    └─── [YEAR] SingleName
  │          │   01 TrackTitle.mp3
  │          │   cover.png
  │   
  └─── ArtistName
       └─── [YEAR] AlbumName
             └─── CD1
             │     │  01 TrackTitle.mp3
             │     │  02 TrackTitle.mp3
             │     │  ...
             │     │  14 TrackTitle.mp3
             │
             └─── CD2
             │     │  01 TrackTitle.mp3
             │     │  02 TrackTitle.mp3
             │     │  ...
             │     │  16 TrackTitle.mp3
             │
             │  cover.jpg

For a more realistic example, here's a couple screenshots of my setup:

file-structure-1

file-structure-1

Note that my file structure goes something like
.../Users/pat/Music/Library/Kasbo/[2020] The Making of a Paracosm/02 Play Pretend (ft. Ourchives).mp3
and my library location I have set in the app is .../Users/pat/Music/Library/ since that's where I keep all my artist folders.

Clone this wiki locally