Bluray and DVD folder problems

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Martijn Offline
Team-XBMC
Posts: 7,713
Joined: Jul 2011
Reputation: 115
Location: Dawn of time
Post: #1
The current way skins retrieve the path for artwork is through ListItem.Path

This will cause them to search inside:
Quote:MOVIES/MOVIENAME/BDMV/
MOVIES/MOVIENAME/VIDEO_TS/
instead of in
Quote:MOVIES/MOVIENAME/

Is there a way of correcting this problem because i can imagine users would not be happy to place their artwork inside those folder because it could break them for certain players (so i have heard)?

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
find quote
ronie Offline
Team-XBMC Member
Posts: 8,258
Joined: Jan 2009
Reputation: 108
Post: #2
in case you want to load an image from the parent folder:
Code:
$INFO[ListItem.Path,,../image.ext]

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
Martijn Offline
Team-XBMC
Posts: 7,713
Joined: Jul 2011
Reputation: 115
Location: Dawn of time
Post: #3
Problem is that you only want to do that with these folders not with others.

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
find quote
ronie Offline
Team-XBMC Member
Posts: 8,258
Joined: Jan 2009
Reputation: 108
Post: #4
Code:
<visible>SubString(ListItem.Path,BDMV) | SubString(ListItem.Path,VIDEO_TS)</visible>

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote