RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. splashscreen
    Log in to post
    • All categories
    • L

      I need help with the audio

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support audio quality splashscreen
      8
      0 Votes
      8 Posts
      1k Views
      L

      @mitu oh just a typo in the post I did change it to alsa in the script.

    • MJTKGM

      Run Command Video Splashscreens

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support runcommand splashscreen run command splashscreens
      2
      0 Votes
      2 Posts
      803 Views
      S

      Here is the part of /opt/retropie/supplementary/runcommand/runcommand.sh that displays the launching image using either feh or fbi. If you're good with scripting, maybe you could jigger it to play a video with vlc or omxplayer, instead:

      function show_launch() { local images=() if [[ "$IS_SYS" -eq 1 && "$USE_ART" -eq 1 ]]; then # if using art look for images in paths for es art. images+=( "$HOME/RetroPie/roms/$SYSTEM/images/${ROM_BN}-image" "$HOME/.emulationstation/downloaded_images/$SYSTEM/${ROM_BN}-image" "$HOME/.emulationstation/downloaded_media/$SYSTEM/screenshots/${ROM_BN}" "$HOME/RetroPie/roms/$SYSTEM/media/screenshots/${ROM_BN}" ) fi # look for custom launching images if [[ "$IS_SYS" -eq 1 ]]; then images+=( "$HOME/RetroPie/roms/$SYSTEM/images/${ROM_BN}-launching" "$CONF_ROOT/launching" ) fi [[ "$IS_PORT" -eq 1 ]] && images+=("$CONFIGDIR/ports/launching") images+=("$CONFIGDIR/all/launching") local image local path local ext for path in "${images[@]}"; do for ext in jpg png; do if [[ -f "$path.$ext" ]]; then image="$path.$ext" break 2 fi done done if [[ -n "$image" ]]; then # if we are running under X use feh otherwise try and use fbi if [[ -n "$DISPLAY" ]]; then feh -F -N -Z -Y -q "$image" & &>/dev/null IMG_PID=$! sleep "$IMAGE_DELAY" else fbi -1 -t "$IMAGE_DELAY" -noverbose -a "$image" </dev/tty &>/dev/null fi elif [[ "$DISABLE_MENU" -ne 1 && "$USE_ART" -ne 1 ]]; then local launch_name if [[ -n "$ROM_BN" ]]; then launch_name="$ROM_BN ($EMULATOR)" else launch_name="$EMULATOR" fi DIALOGRC="$CONFIGDIR/all/runcommand-launch-dialog.cfg" dialog --infobox "\nLaunching $launch_name ...\n\nPress a button to configure\n\nErrors are logged to $LOG" 9 60 fi }

      You can see where it shows the paths and filename-patterns to look for art, (near the top) and where it defines the accepted extensions (for ext in jpg png; do). You'd want to change this part to include mp4, or whatever format your videos will be in, and possibly also add paths above to include ${ROM_BN}-video or similar if that's how you'll name them.

      Then there's the part where the image is displayed with the feh or fbi commands. You'll need to craft a command with the proper options to show your brief video snap, probably with either vlc or omxplayer. Probably also a check on which extension is used to determine whether to use the video or image command, unless you're going to only have videos, and then you'll need to remove the parts referencing images at all, including the "ports" and system-wide launch images (or change them to use the videos too.)

    • jamrom2J

      Accidentally shrunk runcommand splash and retropie setup screens

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie runcommand setup splashscreen 169ratio
      3
      0 Votes
      3 Posts
      573 Views
      jamrom2J

      Got it. I found the issue.

      Using that CRT/HDMI video mode switcher added a two line statement to my \boot\config.txt that wasn't there before.

      framebuffer_height=1920
      framebuffer_width=1080

      Not sure why it added this, but as soon as I commented and rebooted, my RetroPie core was back to normal size and not shrunken anymore.

      I don't have many statements active in my config.txt so I noticed an extra "list" of other video related stuff at the very bottom. It seemed to have duplicated some of the entries that are in sections above and placed them in the last [all] section of the file. I commented it all out so none of it is active.

      framebuffer_height=1920
      framebuffer_width=1080
      disable_overscan=0
      hdmi_force_hotplug=1
      enable_tvout=0
      hdmi_group=2
      hdmi_mode=82

    • C

      Issues when mounting more than just ROMs over NFS

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support mount nas nfs splashscreen video
      13
      0 Votes
      13 Posts
      2k Views
      C

      @code_dredd said in Issues when mounting more than just ROMs over NFS:

      It seems NFSv3 didn't really fix the issue and ran into others (e.g., weird user IDs on remapping). I've gone back to NFSv4 and increased the number of NFS servers/processes from the default of 4 up to 5 to see if that helps.

      It didn't help.

    • Q

      Splashscreen images not displaying | omxiv erroring out

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support make omxiv raspberry pi 4b retropie 4.7.1 splashscreen
      6
      0 Votes
      6 Posts
      969 Views
      mituM

      @questionmark said in Splashscreen images not displaying | omxiv erroring out:

      So will this cause performance to dip?

      No, it will not.

    • O

      Help with Video On Shutdown

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support shutdown splashscreen videos
      5
      0 Votes
      5 Posts
      999 Views
      O

      @obadiahjack

      I ended up figuring out a round about solution, more details on this reddit thread for those looking:

      https://www.reddit.com/r/RetroPie/comments/l51c9g/playing_video_before_shutdown/

      My roundabout solution:

      As discussed with reddit user u/ben_theredonit, the pi4 fails to utilize the emulationstation.sh at the time of posting when shutting down. So editing emulationstation.sh, will not work to play a video before shut down. I solved the problem through a roundabout solution. I found a shutdown button that can be added via the carousel, developed by Steve Smith. Below is his video and in his YouTube description, his files:

      The user Lampros in the youtube comments has a guide to install, if you find yourself getting the permission denied error, as many people in the comments have, I fixed mine by simply typing "sudo" in front of the "chmod +x" command

      From there, I simply changed the 'rom' shutdown script adding the "sudo omxplayer RetroPie/roms/shutdown/shutdown.mp4" code and it worked.

      Big thanks to reddit user u/ben_theredonit, who offered their help.

      I hope this helps anyone that was lost as I was when trying to add a shutdown video.

    • H

      Splash Screen Ideas & Discussion

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes discussion frontend splash splashscreen video
      2
      0 Votes
      2 Posts
      1k Views
      H

      This one's my favourite at the moment:

    • VitorWilleV

      [SPLASHSCREEN] Raspberry Splashscreen (video)

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes splash splashscreen frontend video
      2
      0 Votes
      2 Posts
      1k Views
      H

      I recommend you post your splash screen here:

      https://retropie.org.uk/forum/topic/29132/splash-screen-ideas-discussion

    • R

      PS2-Style Emulation Station Splashscreen (1080p)

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes ps2 emulation splashscreen high-res retropie
      2
      1 Votes
      2 Posts
      2k Views
      H

      I recommend you post your splash screen here:

      https://retropie.org.uk/forum/topic/29132/splash-screen-ideas-discussion

    • S

      Splashscreen for custom systems help...

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splashscreen
      5
      0 Votes
      5 Posts
      383 Views
      S

      @mitu thanks, I've edited my post to just leave the systems I'm having trouble with. They all point to the 'parent' system.

      EDIT: I changed the name for naomi from dreamcast and it's working.. So problem solved. Thanks for pointing me in the right direction.

    • M

      [Splashscreen] Rectangle MP3

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes splashscreen
      3
      5 Votes
      3 Posts
      615 Views
      H

      I recommend you post your splash screen here:

      https://retropie.org.uk/forum/topic/29132/splash-screen-ideas-discussion

    • S

      Add splashscreen on Shutdown on Retropie 4.6

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support shutdown retropie 4.6 splashscreen
      2
      0 Votes
      2 Posts
      500 Views
      S

      @sterpa up...thanks

    • C

      Weird Audio issue in Splash Screen video

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support raspberry pi 4 retropie 4.6 splash screen splash video splashscreen
      15
      0 Votes
      15 Posts
      2k Views
      T

      @huhogany Hi. where do i even find that line /opt/retropie....etc, etc? I am so lost and confused. Do I look for it on pc or use the pi4 gui screen? i have no idea where to find this. Is it a command line?

      UPDATE: I got it to work. What I did...

      Updated post fixes in vman 512 image... reboot
      options
      system tools
      audio settings
      set audio output to headphones

    • U

      Runcommand doesn't seem to be obeying modified runcommand.sh

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support runcommand splashscreen image runcommand.sh
      5
      0 Votes
      5 Posts
      529 Views
      U

      @BuZz editing /opt/retropie/configs/all/runcommand.cfg did the trick, thankyou! :-)

    • sad_musoS

      Stock splash screen pictures/videos work, extra ones don't

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splashscreen boot sequence video splash
      1
      0 Votes
      1 Posts
      255 Views
      No one has replied
    • R

      Startup/splash screens

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splashscreen splash-video splash video boot startup
      3
      0 Votes
      3 Posts
      586 Views
      R

      @mitu not until now, let's see if it works!

    • U

      Can Video Splashscreen end early if System is Ready?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splashscreen
      4
      0 Votes
      4 Posts
      147 Views
      mituM

      Either that or just disable the video - what good is a 5 seconds video ?

    • P

      Runcommand System Splashscreen for Sharp X1?

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes sharp x1 runcommand splashscreen
      1
      0 Votes
      1 Posts
      344 Views
      No one has replied
    • M

      Locked out of Retropie

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support locked out splashscreen error on load
      3
      0 Votes
      3 Posts
      498 Views
      M

      SOLVED

      All I had to do was delete my recently uploaded splash screens through samba and reboot.. I guess you need to save video splash screen files a certain (unknown) way before you transfer

    • AndersHPA

      Splashvideo not showing...

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splash video splashscreen
      9
      0 Votes
      9 Posts
      2k Views
      mituM

      Most likely the USB stick is not 'mounted' (therefore inaccessible) when the splashscreen starts, so the video cannot be read and the splashscreen fails. Copying it to /opt/retropi.. will copy the splashscreen on the SD card, which is immediately available on boot.