digitalec / deemon

Monitor specified artists for new releases
GNU General Public License v3.0
176 stars 15 forks source link

Artist Directory / Templates #32

Closed John-Barr closed 3 years ago

John-Barr commented 3 years ago

I currently have the following directory structure:

[Artists] /
├─ Artist_1 /
│  ├─ [YYYY-MM-DD] Release_1 /

However, when I use the deemon download --artist "Artist_1" the resulting structure is then:

[Artists]/
├─ Artist_1/ 
│  ├─ [YYYY-MM-DD] Release_1/
├─ Artist_1 - Release_1/

Meaning it won't take sub-folders into considerations and re-downloads releases. Maybe something similar to deemix's templating system can be used?

Templates

The fields used can be found in the config.json:

"tracknameTemplate": "%artist% - %title%",
"albumTracknameTemplate": "%tracknumber% - %title%",
"albumNameTemplate": "[%date%] %album%",
digitalec commented 3 years ago

If you don't specify a path to the folder containing your deemix config ("deemix_path"), it uses the default path. If the tags don't match your settings in the deemix GUI, then you are most likely not using the same deemix config file.

John-Barr commented 3 years ago

Oh jeez that is my bad, you are correct I had it set to an old config... Great work on your end to know what the problem was even though I didn't give you much info, props!

Cheers!