• 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 Media Scanning & Identification SOLVED: Find bad scrapped movie

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    SOLVED: Find bad scrapped movie

    madjpm
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:France
    #1
    2024-05-23, 07:00 PM
    Is there a way to retrieve a bad scrapped movie in my library with the path/name.mkv only ?

    Can't search the whole metadatas.
    Go to solution
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #2
    2024-05-23, 07:21 PM
    Can you describe what a "bad scrapped movie" is?
    madjpm
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:France
    #3
    2024-05-23, 07:27 PM
    A movie wrong identified that I can't find
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-05-24, 01:00 AM
    You can use the metadata editor (right below the Dashboard option) to more easily search (manually) for the misidentified movie/show.

    I am not aware of any way to do that otherwise. I purposefully misidentified a show and tried to search for the file name, but Jellyfin only searches for the identified title.
    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]
    madjpm
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:France
    #5
    2024-05-24, 09:20 AM
    Yes it's possible with metadata editor but if you are searching for a path with +6000 movies it's almost impossible...

    I'm looking for a solution to grep a path name on a db and simply get the movie title.
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #6
    2024-05-24, 12:07 PM
    You're most likely asking for the impossible. How is Jellyfin supposed to provide a list of media that it didn't properly pick up? It's not smart enough to understand that it misidentified something, unless you want to make Jellyfin self-aware by sticking AI into it.

    Think about it this way. Lets say I give you a dvd that contains a movie you never have seen before. Lets also say that the physical dvd doesn't have the movie's name printed on it and the movie never shows its name in it either. You ask me what the name is, and I tell you the name. How do you know if I lied? Maybe I gave you a false name for the movie and you wouldn't know.

    The same thing would apply here. Jellyfin relies on you giving the correct name in the correct format. If there are errors (user-error or program-error), it's up to human intervention to correct it. After all, it got it wrong the first time, why would it get it right the second time and report a mismatch to you?

    The only way I could think about doing this is by creating a script that gets a list of all your movies and compares their filenames to their title names stored in their nfo metadata files (if you have those enabled). However, you'll need to parse the filenames since online sources sometimes have different names to what users name their files.

    Otherwise, you would need to determine what a computer needs to see to declare a movie as "badly scrapped".
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2024-05-24, 12:59 PM
    I'm sure you could write a script that queries Jellyfin's DB for the Title that was scrapped and compare with the file name.

    Either way requires a lot of manual work. As Efficient stated, Jellyfin has no mechanism to differentiate incorrectly identified content. Only content that couldn't be identified.
    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]
    madjpm
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:France
    #8
    2024-05-24, 01:03 PM (This post was last modified: 2024-05-24, 01:06 PM by madjpm. Edited 1 time in total.)
    You don 't understand...

    Let's say I've got a movie :

    /home/movie/great_movie.avi

    jellyfin identify it as "Bad Movie" but I've got about 6000 movies so I can't retrieve the bad association unless checking every movie one by one to check the file.

    There should be a database somewhere where I can request something like "/home/movie/great_movie.avi" just to find where is the wrong identified movie so I can re-identified it correctly ?

    PS : another solution would be to simply rename correctly the lost movie but I can't
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #9
    2024-05-24, 01:05 PM
    /var/lib/jellyfin/library.db

    That is the DB you need query, but I am not familiar with SQLite or how the database is structured to help you construct that query.
    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]
    madjpm
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:France
    #10
    2024-05-24, 02:30 PM (This post was last modified: 2024-05-24, 03:27 PM by madjpm. Edited 1 time in total.)
    (2024-05-24, 01:05 PM)TheDreadPirate Wrote: /var/lib/jellyfin/library.db

    That is the DB you need query, but I am not familiar with SQLite or how the database is structured to help you construct that query.

    Thx, I'll try this

    PS : it's ok using /var/lib/jellyfin/library.db

    With sqlitebrowser I can find my lost media !
    Pages (2): 1 2 Next »

    « 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