How to Scrape Roms - EmuELEC/EmuELEC GitHub Wiki

Default Scraper

Check the Retropie scrap tutorial: https://retropie.org.uk/docs/Scraper, but please ignore any install procedures, on EmuELEC since these are easily reached on the scrape menu.

If you need to set up the default scraper to not scrape certain file types, you can edit the <extension> list in this file: /storage/.config/emulationstation/es_systems.cfg

For example, to exclude .bin and .BIN files from scraping in Playstation, find and remove .bin .BIN in the Sony Playstation system here:

<system>
  <name>psx</name>
  <fullname>Sony Playstation</fullname>
  <manufacturer>Sony</manufacturer>
  <release>1994</release>
  <hardware>console</hardware>		
  <path>/storage/roms/psx</path>
  <extension>.bin .BIN .cue .CUE .img .IMG .mdf .MDF .pbp .PBP .toc .TOC .cbn .CBN .m3u .M3U .ccd .CCD .chd .CHD .zip .ZIP .7z .7Z .iso .ISO</extension>
  <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command>
  <platform>psx</platform>
  <theme>psx</theme>
  <emulators>
    <emulator name="libretro">
      <cores>
        <core default="true">pcsx_rearmed</core>
          <core>duckstation</core>
        </cores>
    </emulator>
  </emulators>
</system>

Skyscraper

You can also read the Skyscraper docs here: https://github.com/muldjord/skyscraper/tree/master/docs
but please note that Skyscraper works better from SSH!

⚠️ **GitHub.com Fallback** ⚠️