• 1
  • 25
  • 26
  • 27(current)
  • 28
  • 29
  • 38
[RELEASE] Movie Set Artwork Automator
(2015-01-03, 01:16)maxdido Wrote: Raspberry Pi B+
raspbmc with kodi 14
Movie Set Artwork Automator version 0.2.2

I used your plugin and I had some trouble in the beginning. I couldn't get the thumbnails as icons on the moviewall to show. I named all thumbnails to MovieSetName-folder.jpg (all artwork in 1 single folder). Then I noticed in the settings you can change the filenames of:

- thumbnail --> folder.jpg
- poster --> poster.jpg
- fanart --> fanart.jpg
- etc... etc

I changed poster.jpg to folder.jpg and after a restart of my raspberry pi the thumbnails of the movieset where changed. So great app you wrote. Still I have a question, what is the difference between thumbnail and poster? Where is what used?
Size is probably the only difference. I think it's usually the same image. As far as where they're used, that would depend on the skin you're using. Commonly, list views will have thumbnails and poster views, info windows, etc. will use posters.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
I also noticed when the program scans all sets I see a double backslash in front of SetName-poster.jpg and SetName-fanart.jpg. When I look into the database I also see //Batman-poster.jpg. I'm not saying this is wrong because the program works great but I just found it strange since all other artwork just have 1 slash as you can see in the picture below.

Image
Reply
Does this version of MSAA will add extrafanart1.jpg to database or will it be implemented?
Image

On Helix, it don't add extrafanart1.jpg, i need to do that manually...
Reply
up?
Reply
Im running this on Frodo and getting this error?

Image
Reply
This is the easiest add-on I've ever used... I love it. I don't want a program to tell me what art I can have; I want one to use the art I give it. This is perfect!

Would you consider making a "Movie Artwork Automator" for the "normal" movie (poster, fanart, disc, etc.) artwork? Artwork Downloader drives me nuts because it won't scape my own folders.

I can't thank you enough for this little jewel.

I'm running Kodi 14.1, Aeon MQ5 6.1.6, on Windows 7 & 8.
Reply
(2015-03-01, 10:26)cwebster Wrote: This is the easiest add-on I've ever used... I love it. I don't want a program to tell me what art I can have; I want one to use the art I give it. This is perfect!

Would you consider making a "Movie Artwork Automator" for the "normal" movie (poster, fanart, disc, etc.) artwork? Artwork Downloader drives me nuts because it won't scape my own folders.

I can't thank you enough for this little jewel.

I'm running Kodi 14.1, Aeon MQ5 6.1.6, on Windows 7 & 8.

If I'm understanding you correctly, perhaps you're looking for this?

Current stable version: http://forum.kodi.tv/showthread.php?tid=165012

New version in the works: http://forum.kodi.tv/showthread.php?tid=191781
HTPC: Dell Optiplex 7050 SFF i7-7700 quad-core, 3.6GHz, 16GB
NAS: Synology DS1813+ and DX513, Hybrid RAID (SHR) 48TB usable space
My Media Center | www.CaptainKen.us | www.YouTube.com/KenInGilbert
Reply
I have kodi 15/alpha installed on linux/64 on two machines -- 'master' and 'playback' kodi instances.

The two instances share a single mysql database, as specified in each advancedsettings.xml. Both instances share an NFS-mounted library store. Database info is exported as XML (.nfo), as separate files for each movie.

Database updates, content updates, etc. made in the master all propagate correctly.

I've installed MSA in the 'master' instance.

I've set up a single collection artwork folder for MSA. The folder exists on the NFS store. I've updated my collection artwork PNGs.

After exec of MSA all my collections on the 'master' instance correctly show the collection artwork I've specified.

On the 'playback' instance, I update the Library. All changes are picked up, as usual ...

EXCEPT, all of the collections -- as viewed in Thumbnail view -- display NO ART whatsoever. Title's there, single movies' art is there, but the collections' artwork is just missing.

What do I need to do to get the collection artwork in the 'playback' instance to disaply as it does in the 'master' instance?
Reply
Why are you updating the library on the Playback device when you're sharing a MySQL database? You shouldn't need to apply any library updates on the Playback device once the library updates have been processed by Master. This makes it sound like you're not really sharing a single library at all...
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
I updated it because NOT updating it didn't have any effect on the collections art.

For reference, on the 'playback' instance (it's an RPi)

Code:
cd /home/pi/.kodi/userdata/Database
ls -al
    total 2204
    drwxr-xr-x 3 pi pi    4096 Mar  2 06:54 .
    drwxr-xr-x 9 pi pi    4096 Feb 27 11:40 ..
    -rw-r--r-- 1 pi pi  602112 Mar  2 06:11 Addons16.db
    drwxr-xr-x 2 pi pi    4096 Feb 23 05:29 CDDB
    -rw-r--r-- 1 pi pi   28672 Feb 23 05:29 Epg9.db
    -rw-r--r-- 1 pi pi 1552384 Mar  2 06:15 Textures13.db
    -rw-r--r-- 1 pi pi   36864 Feb 23 05:29 TV27.db
    -rw-r--r-- 1 pi pi   20480 Feb 27 06:57 ViewModes6.db

cat advancedsettings.xml
-----------------------------
<advancedsettings>
<loglevel hide="false">2</loglevel>

<videodatabase>
  <type>mysql</type>
  <host>192.168.1.14</host>
  <port>3306</port>
  <user>kodi</user>
  <pass>PASSWORD</pass>
  <name>kodi_video</name>
</videodatabase>

<musicdatabase>
  <type>mysql</type>
  <host>192.168.1.14</host>
  <port>3306</port>
  <user>kodi</user>
  <pass>PASSWORD</pass>
  <name>kodi_music</name>
</musicdatabase>

<videolibrary>
  <importwatchedstate>true</importwatchedstate>
  <importresumepoint>true</importresumepoint>
  <updateonstartup>false</updateonstartup>
  <backgroundupdate>false</backgroundupdate>
  <cleanonupdate>false</cleanonupdate>
</videolibrary>

<videoscanner>
  <ignoreerrors>true</ignoreerrors>
</videoscanner>

<musiclibrary>
  <updateonstartup>false</updateonstartup>
</musiclibrary>
</advancedsettings>
-----------------------------


cat sources.xml
-----------------------------
<sources>
    <programs>
        <default pathversion="1"></default>
    </programs>
    <video>
        <default pathversion="1"></default>
        <source>
            <name>Movies</name>
            <path pathversion="1">/mnt/NFS/Video/Movies/</path>
            <allowsharing>true</allowsharing>
        </source>
        <source>
            <name>TV</name>
            <path pathversion="1">/mnt/NFS/Video/TV/</path>
            <allowsharing>true</allowsharing>
        </source>
    </video>
    <music>
        <default pathversion="1"></default>
    </music>
    <pictures>
        <default pathversion="1"></default>
    </pictures>
    <files>
        <default pathversion="1"></default>
    </files>
</sources>
-----------------------------
Reply
Hi, I have problem whit my Sagas.

They do not appear in my playlist when I scrap,

In my HDD:

\Films\Evangelion\fanart.jpg
\Films\Evangelion\folder.jpg
\Films\Evangelion\evangelion 1.0.mkv
\Films\Evangelion\evangelion 1.0.mkv

If I let all my videos in the same folder (\Films\all videos), the sagas are created automatically, but I do not have the logo that is displayed ?
Reply
Hi All.. Which is the best media programme to use to scrape the Movie set artwork. I have tried Ember and Media Elch and can not get movie set artwork to scrape. Do you have to download manually from Fanart.Tv website?

This is the only thing I can not get working in Kodi, Thanks
Reply
(2015-03-18, 12:32)Mark142 Wrote: Hi All.. Which is the best media programme to use to scrape the Movie set artwork. I have tried Ember and Media Elch and can not get movie set artwork to scrape. Do you have to download manually from Fanart.Tv website?

This is the only thing I can not get working in Kodi, Thanks

I'm not sure if any of the media managers will download set art. I've always dowoaded all of mine manually.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
Ember media manager does download
Image Image
Reply
(2015-03-18, 14:55)redglory Wrote: Ember media manager does download

Of *Set* artwork? I use Ember (13.x) and have always manually downloaded Set artwork - for the relatively small number of Sets it's not a big deal.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
  • 1
  • 25
  • 26
  • 27(current)
  • 28
  • 29
  • 38

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Movie Set Artwork Automator6