Z9X How to read posters files etc in the Movie Folder (2024)

  1. LucienMember

    Hi
    My movies are on a NAS
    I edit some scrapping informations with TinyMediaManager and it does write the data into the folder of the movies.
    But when I go to the poster wall, I do not see the new pictures/modifications...
    So I would like to know how to tell the Z9X to read those data into the folder of the movie, is this possible ?
    Otherwise, where to change/write say the Fanart to be displayed next time on the Poster wall ?
    Here is the content of a Movie folder :

    Derniere.Nuit.a.Milan.2023.mkv
    Derniere.Nuit.a.Milan.2023.nfo
    Derniere.Nuit.a.Milan.2023-clearlogo.png
    Derniere.Nuit.a.Milan.2023-fanart.jpg
    Derniere.Nuit.a.Milan.2023-keyart.jpg
    Derniere.Nuit.a.Milan.2023-poster.jpg

    Thanks for your help

    Lucien,Oct 22, 2023

    #1

  2. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    You need to update the posters in HT4 that have changed. This doesn't happen automatically.

    There are two ways to do this.

    Assuming you have local NFO/artwork for all your movies, you can either clear the database in HT4 Library settings or just remove a source and rescrape (making sure local NFO and local art are selected in Preferences). This is useful if you have changed a lot of posters.

    Or you can just update the art for each movie you've changed individually - just hit the menu button and select "Change Image". The first one shown is the local image, identified by a little hard disc symbol in the top right corner.

    Markswift2003,Oct 22, 2023

    #2

  3. LucienMember

    Great ! Thank you for this (second) solution Z9X How to read posters files etc in the Movie Folder (4)

    Lucien,Oct 22, 2023

    #3

    Markswift2003 likes this.

  4. LucienMember

    But what about the .nfo ? TinyMediaManager find film descriptions way more complete, so I would like to use this too from time to time for some movies. Can I do it easily ?

    Last edited: Oct 23, 2023

  5. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    Yeah this is where HT falls over.

    It can't be done unless you clear the matching data for the whole source. You can't individually refresh movie details for NFO scans.

    You can for online scans (there's a "refresh Metadata" option ) but not NFO scans.

    It's a PITA.

    There are a few ways to do it, but the easiest is to go to Sources, select the Source, press <menu> and select "Clean up"

    Once the Source is cleared, simply rescan.

    Obviously make sure you have all your NFO and artwork all present and correct first.

    Markswift2003,Oct 23, 2023

    #5

  6. LucienMember

    Thank you for your help again !
    Could you tell me where the Z9X store the .nfo it use for displaying informations on the screen ?
    Maybe I could overwrite this .nfo with the new one ?

    Lucien,Oct 24, 2023

    #6

  7. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    In the movie folder, the same as TMM.

    Markswift2003,Oct 24, 2023

    #7

  8. LucienMember

    TMM ?

    Lucien,Oct 24, 2023

    #8

  9. TemearooActive Member

    Temearoo,Oct 24, 2023

    #9

    Lucien likes this.

  10. LucienMember

    My Z9X internal folder is empty ... \\192.168.1.4\Share\Storage\Movies

    And in my SSD with my films/series collection, I have a Movies folder but with only one folder, ".thumbnails" containing only one 36 bytes files : .database_uuid...

    Lucien,Oct 24, 2023

    #10

  11. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    No - If you export NFOs from HT4 they are put into the same folder as the movie - the same as TMM does.

    Markswift2003,Oct 24, 2023

    #11

  12. fsim2000New Member

    I have my movies on my NAS and taking the example-movie of the first post every folder looks like this:

    Derniere.Nuit.a.Milan_2023.mkv
    Derniere.Nuit.a.Milan_2023.nfo
    Derniere.Nuit.a.Milan_2023.trailer.mp4
    folder.jpg
    fanart.jpg

    Everything works so far but scraping those not take the local images. If I want to change to my local folder image I can select "Change Image" but then I don´t see the local image as described above, I only see the online images (from imdb, fanart, ...). If I want to use my local stored "folder.jpg" I have to search the long way to the right movie folder on my NAS and then select the folder.jpg from the movie which is very uncomfortable. Do I have to rename all my folder.jpg / fanart.jpg to get it shown as first image in "Change Image"-menu?

    Like this:

    Derniere.Nuit.a.Milan_2023-poster.jpg
    Derniere.Nuit.a.Milan_2023-fanart.jpg

    fsim2000,Oct 30, 2023

    #12

  13. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    Yes, exactly that!

    Be careful, but if you want to automate it you could do it with a batch file.

    This should work if you put it in the movie folder it will rename all files called folder.jpg and fanart.jpg to MovieName-poster.jpg and MovieName-fanart.jpg (where MovieName is the name of the .mkv file in the same folder) recursively.

    Assumes all your content is MKV so if that's not the case, for example, if all movie folders have NFOs you could change all references to "mkv" to "nfo" etc.

    Code:

    @echo offsetlocal enabledelayedexpansionfor /r %%i in (*.mkv) do ( set "mkv=%%~ni" for %%j in ("%%~dpi\folder.jpg") do ( if exist "%%~j" ( set "jpg=%%~nj" ren "%%~j" "!mkv!-poster.jpg" ) ) for %%k in ("%%~dpi\fanart.jpg") do ( if exist "%%~k" ( set "jpg=%%~nk" ren "%%~k" "!mkv!-fanart.jpg" ) ))endlocal
    I tested this here and it works, but I suggest you test on a small test batch in a separate folder first!!!

    Last edited: Oct 30, 2023

    Markswift2003,Oct 30, 2023

    #13

    fsim2000 likes this.

  14. fsim2000New Member

    Thanks a lot @Markswift2003, this worked! Have a Zidoo 1000 Pro since the beginning and didn´t know how to rename the folder-images lol... Z9X How to read posters files etc in the Movie Folder (18) will try to rename them all now.

    fsim2000,Nov 1, 2023

    #14

    Markswift2003 likes this.

  15. Markswift2003Well-Known MemberSUPER AdministratorBeta test groupContributor

    Fantastic!!

    Markswift2003,Nov 1, 2023

    #15

Z9X How to read posters files etc in the Movie Folder (2024)

References

Top Articles
Latest Posts
Article information

Author: Nicola Considine CPA

Last Updated:

Views: 5770

Rating: 4.9 / 5 (49 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Nicola Considine CPA

Birthday: 1993-02-26

Address: 3809 Clinton Inlet, East Aleisha, UT 46318-2392

Phone: +2681424145499

Job: Government Technician

Hobby: Calligraphy, Lego building, Worldbuilding, Shooting, Bird watching, Shopping, Cooking

Introduction: My name is Nicola Considine CPA, I am a determined, witty, powerful, brainy, open, smiling, proud person who loves writing and wants to share my knowledge and understanding with you.