• NDS-i on retropie

    2
    0 Votes
    2 Posts
    420 Views
    SuperFromNDS

    @saku00 Sadly, I don't think it is. The only emulator I know of that even supports the DS-i is melonDS, which even then is still a WIP and not available on RetroPie at the moment.

  • Bilinear vs Texture Filtering?

    3
    0 Votes
    3 Posts
    1k Views
    A

    @dankcushions Thanks. I prefer shaders, as the zFast gives you a nice touch of bilinear with scanlines. I found the curved version was slowing things down, but when I went with standard, it was fine. I guess that little extra processing step to warp the edges was just a little too much. When I remove that, things work pretty well (and look great).

  • Skyscraper messing up game names

    11
    0 Votes
    11 Posts
    1k Views
    T

    @sleve_mcdichael thanks for taking the time to explain this :)

  • Where do I go from here?

    3
    0 Votes
    3 Posts
    516 Views
    S

    @sleve_mcdichael That seems to have sorted it, thanks very much :)

  • dolphin 5.0 showing up in foreground

    5
    0 Votes
    5 Posts
    422 Views
    F

    @mitu Okay sorry for wasting your time, I reinstalled it and it fixed the major issue that the diagonals were really slow. I didn't think it was a game profile issue cause it worked fine on dolphin 5.0. I'm not sure how it fixed it though.

  • Skyscraper not showing videos

    3
    0 Votes
    3 Posts
    1k Views
    S

    @drdave79
    You've already enabled OMX player, right? First guess then would be the videos have downloaded, but are in another format like yuv444p while they need to be in yuv420p (or at least that is one that is known to work.) If so, there's a simple script that can convert them for you when downloaded.

    Check first: locate a game that doesn't show a video. Navigate to where the video should be, at:

    /home/pi/.emulationstation/downloaded_media/<platform>/videos/<romname>.mp4

    If the file exists, check it out with ffprobe (may require sudo apt install ffmpeg first):

    ffprobe "filename.mp4" 2>&1 | grep Stream

    Output will look something like:

    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv444p, 360x480 [SAR 1:1 DAR 3:4], 349 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default) Stream #0:1(und): Audio: mp3 (mp4a / 0x6134706D), 24000 Hz, stereo, fltp, 64 kb/s (default)

    See in the Video stream where it says yuv444p, 360x480? That's bad, we want it to say yuv420p instead.

    Sounds like you? Good. This post on GitHub discusses the solution. TL;DR version after:

    https://github.com/muldjord/skyscraper/issues/222

    The quick version:

    Edit your /home/pi/.skyscraper/config.ini to include the line:

    videoConvertCommand="videoconvert.sh %i %o"

    Script provided by jgcobra on the GitHub thread:

    #! /bin/bash # Script provided by jgcobra echo Converting video... echo Source: $1 echo Dest: $2 # Check if the video is already in 420p format c=$(ffprobe "$1" 2>&1 | grep -c yuv420p) if [ "$c" -eq 0 ] then echo Incorrect source video format detected. Converting video to 420p format... ffmpeg -i "$1" -y -pix_fmt yuv420p -acodec copy -strict experimental "$2" else echo Video is in correct 420p format. Copying as is... cp "$1" "$2" fi

    Place the script in your system path or in /home/pi/.skyscraper and make it executable with chmod +x videoconvert.sh. If you want to see the script's output when run by Skyscraper, I think you need to put verbosity="3" in your config.ini.

    I think this check/conversion only happens on initial caching of the video, so re-scrape your roms with --cache refresh to force a re-download and, for maximum efficiency, you can use --flags skipexistingcovers and similar to avoid unnecessarily redownloading those media.

    This solved probably 90% of my problem videos. There were a handful that didn't take and I had to do a little extra fiddling, but this should get you started.

    Don't forget to rebuild your gamelist.

  • Retropie Reading P1 & P2 as 1 Keyboard

    2
  • Proposed fix: Interop scummvm / lr-scummvm launcher

    1
    0 Votes
    1 Posts
    511 Views
    No one has replied
  • Never seen message Pygame then black screen after.

    Locked
    2
    -1 Votes
    2 Posts
    359 Views
    mituM

    @kokkie20 We don't support 3rd party images or scammers that sell them.

  • Permissions in RaspController

    3
    0 Votes
    3 Posts
    104 Views
    T

    Thank you @mitu, will get to that later :)

  • CORE OVERRIDE ISSUE

    2
    0 Votes
    2 Posts
    509 Views
    C

    @shadyaw

    I would like to know this also!

  • 3ds on pi 4

    9
    0 Votes
    9 Posts
    2k Views
    LolonoisL

    Sorry for providing hints into wrong direction. I must admit I did not follow the portable devices section of Nintendo HW well.

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    26 Views
    No one has replied
  • draStic on Raspberry Pi 400

    Moved
    2
    0 Votes
    2 Posts
    686 Views
    mituM

    @bio_hazard1282 said in draStic on Raspberry Pi 400:

    Turns out that I couldn't install it, is there a build of it for arm64?

    No, there isn't. The binary provided by the developer(s) of DraStic is only for 32 bit ARM. Also note that we don't support Ubuntu on the Pi, so some things might not work correctly.

  • FFIV:TCC hangs in ppsspp and lr-ppsspp

    3
    0 Votes
    3 Posts
    530 Views
    S

    ....But not completely. I saved state during the "off to Mist village" intro animation and now the game never runs anymore, even after deleting the saved state and reinstalling the rom.

    the logs show:
    Executing: /opt/retropie/emulators/retroarch/bin/retroarch -L /opt/retropie/libretrocores/lr-ppsspp/ppsspp_libretro.so --config /opt/retropie/configs/psp/retroarch.cfg "/home/pi/RetroPie/roms/psp/FF4CC.cso" --appendconfig /dev/shm/retroarch.cfg
    glGetError 0x500

    I'm mainly wondering if there's some other, deeper config besides the retroarch file in the ppsspp folder somewhere that got distorted by my save state.

  • CD-I emulation through lr-mess

    1
    0 Votes
    1 Posts
    526 Views
    No one has replied
  • 0 Votes
    2 Posts
    576 Views
    mituM

    @alebofsky said in How to save configuration for spinner for an individual game:

    System is running Retropie Playbox on Raspberry Pi 4 (Cortex-A72)

    We don't support 3rd party images - use the RetroPie image from retropie.org.uk/download and report back if you still have the issue when saving the remaps for the game.

  • Space Taxi (c64) Controls

    5
    1 Votes
    5 Posts
    767 Views
    D

    @jamrom2 Yes Space Taxi was definitely the biggest jump to nostalgia for me with the C64. I installed lr-vice from source. It's a bit clunky but ultimately I got it to work. Thank you for your suggestion. Load time was about 2 minutes. Had to hit select/coin to bring up the virtual keyboard just to get past the cheat menu. Then I was finally able to use the joystick.

    Thanks again for your help!

  • Can't load Amiga games automatically

    1
    0 Votes
    1 Posts
    249 Views
    No one has replied
  • My controller stopped working.

    4
    0 Votes
    4 Posts
    320 Views
    mituM

    If you're at 100% full, there cold be problems starting some system services - including bluetooth.

Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.