Author Topic: Attract mode starting before Video splashsceen is finished?  (Read 5024 times)

fumblingwisdom

  • Jr. Member
  • **
  • Posts: 12
    • View Profile
Attract mode starting before Video splashsceen is finished?
« on: February 01, 2017, 10:39:15 PM »
How can I stop attract mode from loading up and playing audio until my splashscreen finishes playing?

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1274
    • View Profile
Re: Attract mode starting before Video splashsceen is finished?
« Reply #1 on: February 01, 2017, 11:59:20 PM »
I personally turn off the RetroPie splashscreen and turn on the intro video for Attract-Mode when booting directly into Attract-Mode. It looks cooler, boots faster and it's controlled by Attract-Mode so you don't need to worry about any overlap and can also cancel it by pressing a button. If you want to use this feature you can put your video in /home/pi/.attract/intro/ and change the Attract-Mode settings using Configure-->Intro. To turn off the RetroPie splashscreen you can use the RetroPie setup tool.

If you want to delay Attract-Mode when booting you can add a "sleep 5" line into the /opt/retropie/configs/all/autostart.sh (\\retropie\configs\all\autostart.sh using the samba share) file.

Add
Code: [Select]
sleep 5
on the line above
Code: [Select]
attract

You can change the number of seconds after "sleep" if needed.

P.S. If you go for the Attract-Mode intro video and disable the RetroPie splashscreen option, you can speed up booting even more by using the raspi-config to disable the OS waiting for the network when booting. You'll still connect to the network if it's there but will boot faster (especially if the network isn't there, like when you bring your Pi to someone else's house).
« Last Edit: February 02, 2017, 12:57:48 AM by progets »

fumblingwisdom

  • Jr. Member
  • **
  • Posts: 12
    • View Profile
Re: Attract mode starting before Video splashsceen is finished?
« Reply #2 on: February 02, 2017, 01:40:29 AM »
Thank you good sir