Skip Navigation

Search

Music album cover art - permission problem

Hello everyone, I noticed that a lot of my music does not get any album art even though they correctly identified with MusicBrainz and the albums do have a cover on them there. Jellyfin does not have write permissions in the data directly where the music is, only read permissions. Though I would have expected that jellyfin uses the metadata folder for cover images not already present there. The reason Jellyfin doesn't have write permissions is that the folder is managed by nextcloud and that creates files with 750 so only read access for the group and jellyfin uses the group Does anyone know how I could solve the issue?

Log when trying to identify an album which should have edited the image: > [WRN] Unable to delete "/{{REDACTED}}/files/Musik/Everglow/Last Melody [Single]/Folder.jpg" System.UnauthorizedAccessException: Access to the path '/{{REDACTED}}/Musik/Everglow/Last Melody [Single]/Folder.jpg' is denied. ---> System.IO.IOException: Permission denied --- End of inner exception stack trace --- at System.IO.FileSystem.DeleteFile(String fullPath) at MediaBrowser.Providers.Manager.ItemImageProvider.PruneImages(BaseItem item, IReadOnlyList`1 images)

I tried giving Jellyfin write permissions on the folder and when identifying an album and it just decided to delete all tracks...

from the log after giving write permissions:

> [INF] Removing item, Type: "Audio", Name: "RATATATA", Path: "/{{REDACTED}}/Musik/Babymetal/RATATATA/1 - RATATATA.mp3", Id: 72e62d6b-7afd-842e-8a72-b9142c53cdaf [INF] Setting provider id's to item ae9bfd0c-30e7-8943-c552-5f89475b4116-"RATATATA": [("MusicBrainzAlbum": "4a762493-80fe-4a52-b11a-ad6ecfcc8a59"), ("MusicBrainzReleaseGroup": "d61d121b-8952-40de-bef9-208b9ea870ec")] [INF] Setting provider id's to item ae9bfd0c-30e7-8943-c552-5f89475b4116-"RATATATA": [("MusicBrainzAlbum": "4a762493-80fe-4a52-b11a-ad6ecfcc8a59"), ("MusicBrainzReleaseGroup": "d61d121b-8952-40de-bef9-208b9ea870ec")] [INF] Removing item, Type: "Audio", Name: "STΦMP! (STΦMP!)", Path: "/{{REDACTED}}/Musik/Dreamcatcher/[VirtuouS]/3 - STΦMP! (STΦMP!).mp3", Id: 32dfa172-442f-af4d-9d6e-0ad4d9a736c6 [INF] Removing item, Type: "Audio", Name: "Intro : 7' Dreamcatcher (Intro : 7' Dreamcatcher)", Path: "/{{REDACTED}}/Musik/Dreamcatcher/[VirtuouS]/1 - Intro : 7' Dreamcatcher (Intro : 7' Dreamcatcher).mp3", Id: e83079d4-9c51-7f8b-1b55-c54d1df3787b [INF] Removing item, Type: "Audio", Name: "JUSTICE (JUSTICE)", Path: "/{{REDACTED}}/Musik/Dreamcatcher/[VirtuouS]/2 - JUSTICE (JUSTICE).mp3", Id: 8d977ec0-6f53-cbd9-65d2-45ddcc1b78d0 [INF] Removing item, Type: "Audio", Name: "2 Rings (2 Rings)", Path: "/{{REDACTED}}/Musik/Dreamcatcher/[VirtuouS]/4 - 2 Rings (2 Rings).mp3", Id: 987a8bdc-8c73-1a74-16ab-341dacf035c3 [INF] Removing item, Type: "Audio", Name: "Fireflies (Fireflies)", Path: "/{{REDACTED}}/Musik/Dreamcatcher/[VirtuouS]/5 - Fireflies (Fireflies).mp3", Id: fe1a2125-ad68-3b2f-fddf-7f3cabf43ccd

Any help is greately appreciated :)

0

Setting up a Jellyfin server with different (remote) storage servers

cross-posted from: https://lemmy.cat/post/2941154

> Hello, not so long ago I discovered Jellyfin, and by extension Radarr, Sonarr, Bazarr, Jackett, etc. > > So I immediately installed Jellyfin on a Hetzner server that I already had, powerful enough to have several people consuming content at the same time on these kinds of services. > > As the hard drives at home were full, and I didn't want to sacrifice my bandwidth, I got a Hetzner Storage Box to store the video content on. > > So I've got Radarr, Sonarr and qBitTorrent installed on my computer, where I manage the downloads, upload them to the Storage Box which is then mounted on the server where Jellyfin is installed to serve the content (see the diagram above, the orange part would be a hypothesis for integrating more storage in the future). > > Problems : > > - Synchronisation between my local machine and the Hetzner Storage Box: as I was saying, I download everything locally and then upload everything with rclone sync to the storage. The exact command is: rclone sync /mnt/2TB/Jellyfin HetznerBox:/Jellyfin --exclude "*.!qB" --transfers 10 --fast-list --checkers 500 --progress --log-level DEBUG --log-file=/var/log/rclone/rclone-sync-jellyfin.log > This has several problems, it's slow, and I have a 1 GB/s fibre connection, and I doubt the problem is with Hetzner... Secondly, if I delete content on the storage server and run the command again, the content will be resynchronised. What's more, it often happens that I run the command and nothing happens for a long time before the synchronisation starts. Thirdly, rclone sync forces me to keep a local copy of everything. > - rclone mount does not seem to respect the --vfs-cache-max-size: here is the command I use to mount the storage server on the server where Jellyfin is installed rclone mount HetznerBox:/Jellyfin /somepath/Jellyfin/ --vfs-cache-mode full --vfs-cache-max-size 100G --allow-other. > But if I run df -h I get /dev/md2 436G 148G 266G 36% / > And if I run sudo du -sh Jellyfin/ I get 378G Jellyfin/ > The server only has Jellyfin installed, and I don't know how to look precisely how much the vfs cache is using. > - since Radarr, Sonarr and everything are on my computer, if I install Jellyserr on the same server as Jellyfin (which would be perfect for managing everything when we have several users), it won't be able to communicate with Radarr and Sonarr. > > Possible solutions: > > - Don't use my local machine. I'd like to use the Hetzner server for Radarr, Sonarr, qBitTorrent, etc. but the problem is that I don't want to store the data on this server, but on the Storage Box. How can I download directly from one server to another? > - you say...

0