Replies: 1 comment 5 replies
|
Hi @c4ddy Thanks for sharing your ideas 👍 1. Different folders per content type You should be able to mount an external volume directly on the playlist subfolder. services:
tidarr:
volumes:
- /path/to/music:/music
- /path/to/external/playlists:/music/playlists # Override just playlists This way albums go to 2. Navidrome scan Navidrome seems to watch regularly the library folder and auto-refreshes 3. Post-download scripting There is already a feature exists. #!/bin/bash
# Available variables: ITEM_TYPE, PROCESSING_PATH, ITEM_URL
echo "Processing $ITEM_TYPE from $ITEM_URL"
# Example: do something specific for playlists
if [ "$ITEM_TYPE" = "playlist" ]; then
# Your custom logic here
fi The script runs after download, before files are post-processed and moved to the final location. Check out Custom processing script for more details. |
Uh oh!
There was an error while loading. Please reload this page.
hello,
one thing I would really appreciate is the ability to have albums go to a different folder outside of the downloads folder. for example I have a Music folder that is my main library, and I have a playlists folder that is different and outside the music folder. so downloading albums should go direct to my music folder and playlists/mixes should go directly to my playlist folder. right now we are limited to only what is inside the download folder. i have a script that i have to run once things are downloaded the copy files to the right location. and then prompts a navi scan through the navi api
which leads to the second part, post tidarr scriptin. once tidarr has copied the file to its final location having the ability to run a script. in this case it would be once the files actually show up in the download folder running a script from that time.
does that make sense? questions?
All reactions