Offline Bluray Media
#1
Hello
I am using Windows7 64, Eden V11, Aeon Nox
I have all my DVD off line and use the XBMC librairy to manage them.It works perfectly. I tried to do the same with Bluray and in that case theBox is not displayed as a Bluray but as a DVD.

Ibut the name indifferent way "Movie Name".Bluray.1080p.disc or "Movie Name".BR.1080p.disc or "Movie Name".1080p.disc with no one where succesfull

What can I do
Reply
#2
Pierre is using Media stubs :

http://wiki.xbmc.org/index.php?title=Media_stubs

Even with Movie_Name.bluray.disc file, Aeon Nox didn't display the right case but pressing I to display information show the Bluray Disc logo.
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#3
Pierre,

To fix your problem, you can do this :

Edit varaibles.xml in 1080i subfolder and search :

Code:
<variable name="ShowcaseCase-7Var">
        <value condition="SubString(Container(504).ListItem(-7).Filename,.3D.)">3d.png</value>
        <value>$INFO[Container(504).ListItem(-7).VideoResolution]p.png</value>
    </variable>

And add a new line to handle .bluray.disc and .dvd.disc file :

Code:
<variable name="ShowcaseCase-7Var">
        <value condition="SubString(Container(504).ListItem(-7).Filename,.3D.)">3d.png</value>
        <value condition="SubString(Container(504).ListItem(-7).Filename,.bluray.)">1080p.png</value>
        <value condition="SubString(Container(504).ListItem(-7).Filename,.dvd.)">576p.png</value>
        <value>$INFO[Container(504).ListItem(-7).VideoResolution]p.png</value>
    </variable>

You have to replace ListItem(-7) to ListItem(9) and also :

Code:
<variable name="GlobalCaseVar">
        <value condition="SubString(ListItem.Filename,.3D.)">3d.png</value>
        <value condition="SubString(ListItem.Filename,.bluray.)">1080p.png</value>
        <value condition="SubString(ListItem.Filename,.dvd.)">576p.png</value>
        <value>$INFO[ListItem.VideoResolution]p.png</value>
    </variable>

After that, case is handle correctly :

Image

Image

AS you can see, on 2nd screenshot, it's an offline movie 'Amadeus.bluray.disc' Wink

PS : Je te fais la réponse en Français sur le forum Passion
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply

Logout Mark Read Team Forum Stats Members Help
Offline Bluray Media0