Extra Fanart

  Thread Rating:
  • 1 Votes - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
moviebuff Offline
Senior Member
Posts: 209
Joined: Dec 2009
Reputation: 0
Location: Canada
Post: #1
Does anyone know how you put extra fanart in a skin? Do you have to use an extrernal program and create nfo files for all the movies with the extra fanart in them or can you just add extra fanart within XBMC.
find quote
nate7365 Offline
Junior Member
Posts: 33
Joined: Jul 2010
Reputation: 0
Post: #2
You just place it in your movie or tv show folder as such. Or at least this is how i do i.

moviefolder - movie.avi
- movie.tbn (movie poster)
- fanart.jpg (fanart pic)
- extrathumbs - thumb1.jpg - thumb2.jpg



tvshowfolder - folder.jpg (tvshow poster)
- fanart.jpg (fanart pic)
- clearart.png
- logo.png
- extrathumbs - thumb1.jpg - thumb2.jpg
- season 1
- season 2
(This post was last modified: 2010-10-05 19:16 by nate7365.)
find quote
moviebuff Offline
Senior Member
Posts: 209
Joined: Dec 2009
Reputation: 0
Location: Canada
Post: #3
Too bad there wasnt an extra thumbs tab inside xbmc that you can grab images from. Sounds time consuming, thank you for the reply ill have to check this out. That is just an extra thumbs folder you created ?
find quote
gabbott Offline
Team-XBMC Member
Posts: 1,547
Joined: Jul 2007
Reputation: 26
Post: #4
You can use Ember media manager to grab the extra fanart and put it in the appropriate folders (at least I know you can with movies, not sure about shows).
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #5
1. Make a folder called "extrafanart" at root of Movie/TV folder
2. Put these code blocks at line 54 in myvideonav.xml
Quote:<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath background="true">$INFO[ListItem.Path]/extrafanart</imagepath>
<timeperimage>7000</timeperimage>
<randomize>true</randomize>
<fadetime>1000</fadetime>
</control>
<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath background="true">$INFO[ListItem.Path]../extrafanart</imagepath>
<timeperimage>7000</timeperimage>
<randomize>true</randomize>
<fadetime>1000</fadetime>
<visible>Container.Content(episodes)</visible>
</control>

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find quote
tuxen Offline
Fan
Posts: 537
Joined: May 2011
Reputation: 4
Post: #6
mcborzu Wrote:1. Make a folder called "extrafanart" at root of Movie/TV folder
2. Put these code blocks at line 54 in myvideonav.xml

Will this work for the new Eden confluence skin?

Edit: realized it won't because line 54 is in the middle of something else, can someone tell me where this would go on the Eden version of the skin?

Best regards tuxen
(This post was last modified: 2011-11-08 04:41 by tuxen.)
find quote
tuxen Offline
Fan
Posts: 537
Joined: May 2011
Reputation: 4
Post: #7
I figured it out; the above needs to be pasted in after line 7 in MyVideoNav.xml.
Right after the line that reads:
Code:
<include>CommonVideoBackground</include>
So for everybody that wants extrafanart in the new (pre)Eden skin, here you go. Smile You can set the timings yourself, it shouldn't be hard to find the numbers to alter in the above copy/paste bit.

Best regards tuxen
find quote
nascent Offline
Junior Member
Posts: 16
Joined: Jul 2012
Reputation: 0
Post: #8
Thanks for the info tuxen and mcborzu, just what I was after.
find quote