2025-03-18, 04:56 PM
Hi,
There's one movie that's not showing up in one of my libraries. The movie appears once in the logs when I do a library scan in "Replace all metadata" refresh mode. But I can't see any error or anything that indicates why it doesn't appear in the library.
Any suggestions on how to continue troubleshooting? My setup and configuration below.
I place each move in its own directory and all movies in the directory/library have the same permissions:
My docker compose file:
Logs:
My logging.json:
There's one movie that's not showing up in one of my libraries. The movie appears once in the logs when I do a library scan in "Replace all metadata" refresh mode. But I can't see any error or anything that indicates why it doesn't appear in the library.
Any suggestions on how to continue troubleshooting? My setup and configuration below.
I place each move in its own directory and all movies in the directory/library have the same permissions:
Code:
server:~/movies/animation/How to Train Your Dragon$ ll
total 1091808
drwxrwxr-x 2 1000 1000 4096 Mar 18 15:56 ./
drwxrwxr-x 75 1000 1000 4096 Mar 16 16:17 ../
-rw-r--r-- 1 1000 1000 37215 Mar 18 15:56 folder.jpg
-rwxr--r-- 1 1000 1000 1117949711 Nov 28 12:50 'How to Train Your Dragon.mkv'*
-rw-r--r-- 1 1000 1000 3657 Mar 15 13:34 'How to Train Your Dragon.nfo'
-rw-r--r-- 1 1000 1000 3736 Mar 18 15:56 movie.nfo
My docker compose file:
Code:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1000:1000
ports:
- "8096:8096"
- "8920:8920"
- "1900:1900"
- "7359:7359"
volumes:
- /home/jellyfin/config:/config
- /home/jellyfin/cache:/cache
- type: bind
source: /home/movies/animation
target: /animation
restart: 'unless-stopped'
Logs:
Code:
[2025-03-18 16:56:50.271 +01:00] [INF] [11] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Starting "/usr/lib/jellyfin-ffmpeg/ffprobe" with args "-analyzeduration 200M -probesize 1G -i file:\"/animation/How to Train Your Dragon/How to Train Your Dragon.mkv\" -threads 0 -v warning -print_format json -show_streams -show_chapters -show_format"
My logging.json:
Code:
{
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"": "Debug"
}
}
}
}