Bluray case for ISO

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
bobrap Offline
Fan
Posts: 347
Joined: Dec 2008
Reputation: 1
Post: #1
Is there a way I can have the bluray case show on my bluray ISOs? ThanksSmile
find quote
ronie Offline
Team-XBMC Member
Posts: 8,259
Joined: Jan 2009
Reputation: 108
Post: #2
i'm using the video resolution to determine whether to display a dvd or blu-ray case.

i'm not sure if xbmc can get the video resolution from .iso files ?

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
humferier Offline
Member
Posts: 86
Joined: Oct 2009
Reputation: 3
Location: Belgium
Post: #3
maybe with adding the file information into the NFO file of the bluray.iso ?

Code:
<fileinfo>
        <streamdetails>
            <video>
                <codec>h264</codec>
                <aspect>1.777778</aspect>
                <width>1920</width>
                <height>1080</height>
            </video>
            <audio>
                <codec>dca</codec>
                <language>fra</language>
                <channels>6</channels>
            </audio>
        </streamdetails>
    </fileinfo>

My name is Erier, Humf Erier
[Image: double0smile.gif]
find quote
bobrap Offline
Fan
Posts: 347
Joined: Dec 2008
Reputation: 1
Post: #4
If the default case is DVD, can it be switched to Bluray and then files that have video resolution can still use the appropriate case?
find quote
ronie Offline
Team-XBMC Member
Posts: 8,259
Joined: Jan 2009
Reputation: 108
Post: #5
bobrap Wrote:If the default case is DVD, can it be switched to Bluray and then files that have video resolution can still use the appropriate case?

that should well be possible, this is what i'm using for the dvd case:
Code:
![stringcompare(ListItem.VideoResolution,720) | stringcompare(ListItem.VideoResolution,1080)]
and here's the code for the blu-ray case:
Code:
[stringcompare(ListItem.VideoResolution,720) | stringcompare(ListItem.VideoResolution,1080)]


you'll have to browse all View-*.xml files and adjust those lines to:
dvd case:
Code:
[stringcompare(ListItem.VideoResolution,480) | stringcompare(ListItem.VideoResolution,540) | stringcompare(ListItem.VideoResolution,576)]

blu-ray case:
Code:
![stringcompare(ListItem.VideoResolution,480) | stringcompare(ListItem.VideoResolution,540) | stringcompare(ListItem.VideoResolution,576)]

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
bobrap Offline
Fan
Posts: 347
Joined: Dec 2008
Reputation: 1
Post: #6
ThanksNod
find quote