• 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 NEVER take already existing video contact sheet as movie image

     
    • 0 Vote(s) - 0 Average

    NEVER take already existing video contact sheet as movie image

    SkewedZeppelin
    Offline

    Junior Member

    Posts: 6
    Threads: 3
    Joined: 2023 Jul
    Reputation: 0
    Country:Argentina
    #1
    2023-09-09, 03:16 PM
    Hi

    When there is a video contact sheet image, Jellyfin will take this a preview.

    I wish to disable that and always create a single still image.

    thank you
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2023-09-09, 03:20 PM
    If I understand your post, you DON'T want Jellyfin to use a screen grab as the preview?

    In your Library dashboard, turn off all the "Image fetchers".

       
    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]
    SkewedZeppelin
    Offline

    Junior Member

    Posts: 6
    Threads: 3
    Joined: 2023 Jul
    Reputation: 0
    Country:Argentina
    #3
    2023-09-10, 04:57 AM
    > If I understand your post, you DON'T want Jellyfin to use a screen grab as the preview?

    I don't wish that Jellyfin takes the already downloaded preview from movie. I wish that Jellyfin generates the own, not take the one that was bundled with torrent.

    You understand? Sorry English not my native langugag
    JRPGod
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2023 Sep
    Reputation: 0
    #4
    2023-09-10, 05:32 AM
    If Jellyfin can identify a picture that it can already use as a preview, it won't bother attempting to download one or generate one.

    Your solution is to delete the image(s) that already exist(s) then re-scan.

    If you have a giant library and need to remove a lot of images to achieve this, this could be achieve fairly simply with a batch/bash script, or even a terminal one-liner. Google "delete all images in subdiretories recursively bash/batch" - Bash if linux, batch if windows.
    SkewedZeppelin
    Offline

    Junior Member

    Posts: 6
    Threads: 3
    Joined: 2023 Jul
    Reputation: 0
    Country:Argentina
    #5
    2023-09-10, 06:21 AM
    $ find /data/download/48E1 -name \*.jpg -type f -exec rm -f {} \;
    $ find /data/download/48E1 -name \*.jpeg -type f -exec rm -f {} \;
    $ find /data/download/48E1 -name \*.png -type f -exec rm -f {} \;
    $ find /data/download/48E1 -name \*.PNG -type f -exec rm -f {} \;
    $ find /data/download/48E1 -name \*.JPG -type f -exec rm -f {} \;
    $ find /data/download/48E1 -name \*.JPEG -type f -exec rm -f {} \;

    How-To write on 1 line?
    JRPGod
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2023 Sep
    Reputation: 0
    #6
    2023-09-11, 09:34 AM (This post was last modified: 2023-09-11, 09:37 AM by JRPGod. Edited 3 times in total.)
    Try

    find /data/download/48E1 \( -iname \*.jpg -o -iname \*.png -o -iname \*.jpeg \) -type f -exec rm -f {} \;

    or perhaps a little cleaner

    find /data/download/48E1 \( -iname \*.jpg -o -iname \*.png -o -iname \*.jpeg \) -type f -delete

    the -o means logical OR and iname instead of name should make it case-insensitive, so it capures jpeg and JPEG and Jpeg in one call.

    I haven't tested this since I've only access to a Windows machine atm, but it should be close if not spot on.
    « 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