• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting SOLVED: Jellyfin Movie Thumbnails Broken

     
    • 0 Vote(s) - 0 Average

    SOLVED: Jellyfin Movie Thumbnails Broken

    Nathan
    Offline

    Junior Member

    Posts: 4
    Threads: 1
    Joined: 2025 Feb
    Reputation: 0
    Country:United States
    #1
    2025-02-19, 02:54 AM (This post was last modified: 2025-02-19, 03:05 AM by Nathan. Edited 2 times in total.)
    So I have had Jellyfin for a few month now and it has been working wonderfully. Unfortunately now for whatever reason it is no displaying the proper movie thumbnail, it is just showing a random spot from the movie as a thumbnail. I have tried refreshing the meta data and I have disconnected the library file and reconnected it with no change. There is a picture to show what I am having an issue with. All movie meta data seem to just not be getting pulled for no reason that I can tell.

    Extra Info:
    I am on version 10.10.03
    Jellyfin is running as an LXC inside of proxmox
    The thumbnails for tv shows work fine and aren't having any problems


    Attached Files Thumbnail(s)
       
    Go to solution
    bugger
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2025 Feb
    Reputation: 0
    Country:Australia
    #2
    2025-02-19, 10:53 AM
    I'm having the same problem on a new install of 10.10.05 and upgraded to .06. Looking at the logs I see that any metadata plugin trying to access their servers is trying to connect to my router's IP address on port 8118 and failing with connection refused because obviously my router doesn't have that port open.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #3
    2025-02-19, 02:09 PM
    Can you share your jellyfin logs via privatebin.net?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Nathan
    Offline

    Junior Member

    Posts: 4
    Threads: 1
    Joined: 2025 Feb
    Reputation: 0
    Country:United States
    #4
    2025-02-20, 01:55 AM (This post was last modified: 2025-02-20, 01:56 AM by Nathan.)
    (2025-02-19, 02:09 PM)TheDreadPirate Wrote: Can you share your jellyfin logs via privatebin.net?

    Here are the logs:  https://privatebin.net/?c0b1677a9de8d397#9XoCKRBXkro8dhuNGB2eum6ZJ6Hb6F7naLVQwcbD5TH5

    I think may have sent them in privet messages on accident

    (2025-02-19, 10:53 AM)bugger Wrote: I'm having the same problem on a new install of 10.10.05 and upgraded to .06. Looking at the logs I see that any metadata plugin trying to access their servers is trying to connect to my router's IP address on port 8118 and failing with connection refused because obviously my router doesn't have that port open.

    How did you fix it?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #5
    2025-02-20, 03:05 PM
    Jellyfin can't access the Internet. Looks like you have a VPN installed. Tailscale? Is your VPN setup for split tunneling?

    Unrelated, it looks like you enabled saving of trickplays with your media. But Jellyfin does not have permissions to write to your media directory.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Nathan
    Offline

    Junior Member

    Posts: 4
    Threads: 1
    Joined: 2025 Feb
    Reputation: 0
    Country:United States
    #6
    2025-02-24, 01:24 AM
    (2025-02-20, 03:05 PM)TheDreadPirate Wrote: Jellyfin can't access the Internet.  Looks like you have a VPN installed.  Tailscale?  Is your VPN setup for split tunneling?

    Unrelated, it looks like you enabled saving of trickplays with your media.  But Jellyfin does not have permissions to write to your media directory.


    Thank you! Sorry for the late reply, yes Tailscale is is my vpn and I use it for remote access to my jellyfin server and all my stuff. I run jellyfin as a  LXC container in my Proxmox host, After reading what you said I checked my DNS stuff and found that the proxmox host which also has tailscale installed. Tailscale took over the global DNS for some reason and I cleared that and reset up my DNS correctly and that fixed the problem. I will also look into the other issue, I have a SMB share setup for jellyfin to access but that must be a permission error. Thank you good sir!
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2025-02-24, 01:21 PM
    Keep in mind that Jellyfin runs as a separate user. The simple fix is to add "noperm" to the mount options for your SMB share. That tells the OS to not check the permissions of the user requesting access to the SMB.

    Code:
    //192.168.1.3/library /media/library cifs credentials=/home/chris/.smbcredentials,noperm 0 0
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Nathan
    Offline

    Junior Member

    Posts: 4
    Threads: 1
    Joined: 2025 Feb
    Reputation: 0
    Country:United States
    #8
    2025-02-25, 05:43 AM
    (2025-02-24, 01:21 PM)TheDreadPirate Wrote: Keep in mind that Jellyfin runs as a separate user.  The simple fix is to add "noperm" to the mount options for your SMB share.  That tells the OS to not check the permissions of the user requesting access to the SMB.

    Code:
    //192.168.1.3/library /media/library cifs credentials=/home/chris/.smbcredentials,noperm 0 0

    Thank you for that! I will use it!
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode