help disabling splashscreen

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
eoghan Offline
Junior Member
Posts: 27
Joined: Apr 2012
Reputation: 0
Post: #1
this is my advanced settings xml.i have it in the correct location(appdata/roaming/userdata) but the splashscreen remains.what can i do?


<advancedsettings>
<gui>
<algorithmdirtyregions>3</algorithmdirtyregions>
<nofliptimeout>0</nofliptimeout>
</gui>
<useddsfanart>true</useddsfanart>
<bginfoloadermaxthreads>5</bginfoloadermaxthreads>
<splash>false</splash>
<videoscanner>
<ignoreerrors>true</ignoreerrors>
</videoscanner>
<network>
<curlclienttimeout>45</curlclienttimeout>
<cachemembuffersize>1042880</cachemembuffersize>
<network>
<latency>
<delay>0</delay>
</latency>
<gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand>
</advancedsettings>
EDIT: IM JUST GOIN TO DELETE THE SPLASH.PNG

Zotac Zbox id41 Intel Atom d525 nm10 1.8ghz win7
(This post was last modified: 2012-08-29 03:08 by eoghan.)
find quote
artrafael Offline
Team-XBMC Forum Moderator
Posts: 4,424
Joined: Jul 2010
Reputation: 78
Location: USA
Post: #2
Typo. You forgot the "/" in the <network> end tag:

Code:
:
<network>
<curlclienttimeout>45</curlclienttimeout>
<cachemembuffersize>1042880</cachemembuffersize>
</network>
:
find quote
eoghan Offline
Junior Member
Posts: 27
Joined: Apr 2012
Reputation: 0
Post: #3
good spot.thanks for that

Zotac Zbox id41 Intel Atom d525 nm10 1.8ghz win7
find quote
artrafael Offline
Team-XBMC Forum Moderator
Posts: 4,424
Joined: Jul 2010
Reputation: 78
Location: USA
Post: #4
These types of errors are easier to spot, and overall readability is improved, if you format your xml files thusly:

Code:
<advancedsettings>
  <gui>
    <algorithmdirtyregions>3</algorithmdirtyregions>
    <nofliptimeout>0</nofliptimeout>
  </gui>
  <useddsfanart>true</useddsfanart>
  <bginfoloadermaxthreads>5</bginfoloadermaxthreads>
  <splash>false</splash>
  <videoscanner>
    <ignoreerrors>true</ignoreerrors>
  </videoscanner>
  <network>
    <curlclienttimeout>45</curlclienttimeout>
    <cachemembuffersize>1042880</cachemembuffersize>
  </network>
  <latency>
    <delay>0</delay>
  </latency>
  <gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand>
</advancedsettings>
find quote
PatrickBateman Offline
Posting Freak
Posts: 1,643
Joined: Mar 2011
Reputation: 15
Location: Another Earth
Post: #5
What does the bginfoloadermaxthreads setting do? Google doesn't return an exact scenario of what this setting will do?

Does it mean that xbmc will not perform more than >x< jobs at once?
find quote
Ardalista Offline
Donor
Posts: 382
Joined: Jun 2011
Reputation: 235
Location: New Zealand
Post: #6
(2012-08-29 18:22)PatrickBateman Wrote:  What does the bginfoloadermaxthreads setting do? Google doesn't return an exact scenario of what this setting will do?

Does it mean that xbmc will not perform more than >x< jobs at once?

It's covered in the wiki..

http://wiki.xbmc.org/index.php?title=Use...threads.3E

My System Specs

Battlefield 3 FTW!
[Image: Ardalista.png]

Please click ↓ (+/-) if you think this post was useful
find quote
PatrickBateman Offline
Posting Freak
Posts: 1,643
Joined: Mar 2011
Reputation: 15
Location: Another Earth
Post: #7
(2012-08-29 18:53)Ardalista Wrote:  
(2012-08-29 18:22)PatrickBateman Wrote:  What does the bginfoloadermaxthreads setting do? Google doesn't return an exact scenario of what this setting will do?

Does it mean that xbmc will not perform more than >x< jobs at once?

It's covered in the wiki..

http://wiki.xbmc.org/index.php?title=Use...threads.3E

Yea I saw that, however the description says very little to me.
"Control the number of threads in the background info loader thread pool (thumb generagor, flagging, etc)"

Exactly what does that mean?
How many are used by default?
Does increasing or decreasing improve performance?
How many threads are recommended for low powered CPUs 2/3/100?
What side effects are apparent when this is enabled?

By selecting a finite number such as 2 for example ... What exactly happens? Again, I searched google and apart from the description above (which to me isn't very descriptive or clear) I'm stumped if I know (and could explain to someone) what this setting actually does... Undecided
find quote
artrafael Offline
Team-XBMC Forum Moderator
Posts: 4,424
Joined: Jul 2010
Reputation: 78
Location: USA
Post: #8
Might be better to spin this discussion off to its own thread rather than in this one, which is entitled, "help disabling splashscreen".
find quote
PatrickBateman Offline
Posting Freak
Posts: 1,643
Joined: Mar 2011
Reputation: 15
Location: Another Earth
Post: #9
Yea,

It's not that important to be honest, definetly not enough to justify its own thread :-0

Just id never seen that particular setting before, however it does seem no one actually knows exactly what it does or how it works Big Grin

I was just conversing (asking the OP and in general) due to it being contained within his advancedsettings.xml posted in the thread.

Smile
find quote