Hallo zusammen,
ich habe eine Frage bezüglich des Fallback Bildes (das mit dem gefärbten Rauch), welches angezeigt wird, wenn man in der Filmdatenbank "Fanart" als Ansicht gewählt hat und noch auf keinem Film steht.
Wenn ich die Filmliste durchscrollen lasse wird immer wieder kurz zwischen zwei Fanarts dieses Fallback Bild eingeblendet. Was - wir ich finde nur unnötig Rechenzeit benötigt.
Da ich das Bild nicht verändern möchte daher meine Frage: Wie lässt sich das Laden des Fallback Bilds für die Filmdatenbank komplett abstellen?
Da ich im Moment keinen Zugang zum XBMC habe, habe ich schonmal etwas gesucht und bin auf folgendes gestoßen.
In der "includes.xml" gibt es folgenden Abschnitt:
<include name="CommonVideoBackground">
<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath fallback="special://skin/backgrounds/videos.jpg" background="true">$INFO[Skin.String(Home_Custom_Back_Video_Folder)]</imagepath>
<timeperimage>10000</timeperimage>
<randomize>true</randomize>
<fadetime>1000</fadetime>
</control>
<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath fallback="special://skin/backgrounds/videos.jpg" background="true">$INFO[Skin.String(Home_Custom_Back_Movies_Folder)]</imagepath>
<timeperimage>10000</timeperimage>
<randomize>true</randomize>
<fadetime>1000</fadetime>
<visible>Container.Content(Movies) + [!IsEmpty(Skin.String(Home_Custom_Back_Movies_Folder)) + Skin.HasSetting(HomeMenuNoMoviesButton)]</visible>
</control>
<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath fallback="special://skin/backgrounds/videos.jpg" background="true">$INFO[Skin.String(Home_Custom_Back_TVShow_Folder)]</imagepath>
<timeperimage>10000</timeperimage>
<randomize>true</randomize>
<fadetime>1000</fadetime>
<visible>[Container.Content(TVShows) | Container.Content(Seasons) |Container.Content(Episodes)] + [!IsEmpty(Skin.String(Home_Custom_Back_TVShow_Folder) + Skin.HasSetting(HomeMenuNoTVShowsButton)])</visible>
</control>
</include>
Alles anzeigen
Reicht es aus, wenn ich im Eintrag
<imagepath fallback="special://skin/backgrounds/videos.jpg" background="true">$INFO[Skin.String(Home_Custom_Back_Movies_Folder)]</imagepath>
die background="true" Setting ändere in
<imagepath fallback="special://skin/backgrounds/videos.jpg" background="false">$INFO[Skin.String(Home_Custom_Back_Movies_Folder)]</imagepath>
oder muss ich noch an anderen Stellen suchen?
Besten Dank für eine Hilfestellung.
Gruß