• 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 General Questions Changing Media Thumbnails

     
    • 0 Vote(s) - 0 Average

    Changing Media Thumbnails

    Thumbnails
    icedcoffee
    Offline

    Junior Member

    Posts: 2
    Threads: 2
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #1
    2024-03-18, 04:46 AM
    I've been trying to dig through the settings on how to remove thumbnails from a video but couldn't find anything. I'd be okay with episodes having the default series image, I just don't want to see potential spoilers when selecting an episode.

    Is there a way to do this?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-03-18, 06:14 PM
    I think you would need to disable the episode/movie image providers in the library settings. You would need to rescan the library/movie/show and replace all metadata + replace all images.
    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]
    HERIGROSIR
    Offline

    Junior Member

    Posts: 20
    Threads: 6
    Joined: 2024 Jun
    Reputation: 0
    Country:Indonesia
    #3
    2024-06-27, 07:18 AM
    replace all images. NOT WORKING
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #4
    2024-06-27, 10:09 AM (This post was last modified: 2024-06-27, 09:49 PM by Efficient_Good_5784. Edited 2 times in total.)
    Easiest thing would be to just delete the thumbnaila from your server. This will cause Jellyfin to show a blur since it can't find the source. Though you have to make sure to disable all episode image metadata sources so that they don't come back.

    Another thing you could do is use CSS to cover up the episode images.

    edit:
    The following CSS code will hide episode images from the episode lists and replace them with solid-black. You will still get episode images however if you click on an episode to fully open its details.

    Code:
    .listItemImage.listItemImage-large.itemAction.lazy {
      background-image: none !important;
      background-color: black;
    }
    mildlyjelly
    Offline

    Junior Member

    Posts: 31
    Threads: 2
    Joined: 2024 Jun
    Reputation: 4
    #5
    2024-06-30, 04:13 AM
    If you just want to blur the images (which admittedly could still cause spoilers):
    Code:
    .listItemImage.listItemImage-large.itemAction.lazy {
      filter: blur(16px);
      -webkit-filter: blur(16px);
    }
    1
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #6
    2024-06-30, 04:24 AM (This post was last modified: 2024-06-30, 04:24 AM by Efficient_Good_5784. Edited 1 time in total.)
    (2024-06-30, 04:13 AM)mildlyjelly Wrote: If you just want to blur the images (which admittedly could still cause spoilers):
    Code:
    .listItemImage.listItemImage-large.itemAction.lazy {
      filter: blur(16px);
      -webkit-filter: blur(16px);
    }
    I originally had this same thought and was also going to share this. However, the problem with adding a blur is that the play button will also be blurred out.
    That's the reason I went with just removing the picture and leaving a solid-black background in the previous post.

    Though I guess it doesn't matter if you just remember to click in the middle of the episode image to play it.
    mildlyjelly
    Offline

    Junior Member

    Posts: 31
    Threads: 2
    Joined: 2024 Jun
    Reputation: 4
    #7
    2024-06-30, 06:42 PM
    Oh, yes I see. But this should work:
    Code:
    .listItemImage.listItemImage-large.itemAction.lazy::before {
        content: "";
        position: absolute;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(16px);
    }
    1
    1
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #8
    2024-06-30, 08:20 PM
    That works!
    Flowtimes (龙之道)
    Offline

    Junior Member

    Posts: 1
    Threads: 0
    Joined: 2025 May
    Reputation: 0
    #9
    2025-05-04, 11:58 AM (This post was last modified: 2025-05-04, 12:00 PM by Flowtimes (龙之道). Edited 2 times in total.)
    Thanks it's perfect!!😍
    « 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