Where are the logo.png?
#1
Hello!

Since I've upgraded to Frodo, I no longer see where the new downloaded logo.png are stored... In the movie folder, there's no sign of it (except for extrafanart and extrathumb -> hence XBMC can write to the folder). When I click on Choose fanart, and then click clearlogo, it shows that I have one already downloaded, but I just can't find it!

Prior to FRodo, I was showing the logo of a given movie or tv shows with this code :

Code:
<texture background="true">$INFO[ListItem.Path,,logo.png]</texture>

Obviously, now it only show the logo that has been downloaded prior to the Frodo. It only affect new movie and tv shows.

I also haven't see an infolabel with ListItem.Art(logo)... Unless I missed it?

Thanks!
Reply
#2
Path is stored to the art database table and the images are cached locally to the thumbnails directory.

Infolabels are mentioned here http://forum.xbmc.org/showthread.php?tid...pid1231228
Reply
#3
Great! I hadn't seen this post. Everything works now, thank!
Reply
#4
I am using these on a TV Guide and they work fine
PHP Code:
ListItem.Property(Art(landscape))
ListItem.Property(Art(clearlogo))
ListItem.Property(Art(clearart)) 

Cheers
Nessus
Reply
#5
Thanks!

What would be the advantage of your code Nessus over something like

Code:
ListItem.Art(clearlogo)

? I'm still really new to all these skin codes.
Reply
#6
Nessus code is for tv show next aired only. In the library use ListItem.Art(...).
Image
Reply
#7
Should be whats listed in post #2:

ListItem.Art(clearlogo)

also season/episodes:

ListItem.Art(tvshow.clearlogo)

Theres also player.art(), couldn't find a good link that had every info label. You can either check Aeon, T! or Carmichael for correct usage
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#8
Great, thanks! Smile
Reply
#9
(2013-03-11, 19:35)Balinus Wrote: Thanks!

What would be the advantage of your code Nessus over something like

Code:
ListItem.Art(clearlogo)

? I'm still really new to all these skin codes.

(2013-03-11, 20:41)`Black Wrote: Nessus code is for tv show next aired only. In the library use ListItem.Art(...).

Black is correct. That's why i wrote that i am using that code in TV Guide which depends next aired script.

Note for Ronie : Maybe is good idea to add those labels also here ?


Cheers
Nessus
Reply
#10
(2013-03-12, 00:44)nessus Wrote:
(2013-03-11, 19:35)Balinus Wrote: Thanks!

What would be the advantage of your code Nessus over something like

Code:
ListItem.Art(clearlogo)

? I'm still really new to all these skin codes.

(2013-03-11, 20:41)`Black Wrote: Nessus code is for tv show next aired only. In the library use ListItem.Art(...).

Black is correct. That's why i wrote that i am using that code in TV Guide which depends next aired script.

Note for Ronie : Maybe is good idea to add those labels also here ?


Cheers
Nessus

No problem, I read your post too quick maybe. Smile

Indeed, adding it to the post would be good as I was using that particular post to see the new infolabels related to art type.
Reply

Logout Mark Read Team Forum Stats Members Help
Where are the logo.png?0