Homepage Forums RetroPie Project Splash screens Mushberry Video Splashscreen Reply To: Mushberry Video Splashscreen

#88682
herbfargus
Member

@ yogg

Why yes there is- if you said you are using the method from the first post and your code for the asplashcreen file looks something like this:

/usr/bin/omxplayer -o hdmi /home/pi/RetroPie-Setup/supplementary/splashscreens/video/mushberryintro.mp4 &

delete the “&” and it will allow the movie to play the whole way through before emulationstation starts: so your changed code will look something like this:

/usr/bin/omxplayer -o hdmi /home/pi/RetroPie-Setup/supplementary/splashscreens/video/mushberryintro.mp4

If you are using the second method for image 2.6 the “&” you need to remove is a bit lower in this bit of code:

case "$1" in
  start|"")
    do_start &
    ;;

if you want the movie to play through before emulationstation loads remove the “&” so it looks like this:

case "$1" in
  start|"")
    do_start
    ;;