Artie is a powerful art scraper designed for Anbernic devices running MuOS. It helps you download and manage artwork for your ROMs, enhancing your gaming experience with beautiful visuals and a highly optimized, responsive interface.
- Easy-to-use and minimal UI inspired from tiny-scraper
- Enhanced UI performance with atomic transitions and smooth animations
- Advanced caching system for improved performance and reduced API calls
- Comprehensive error handling and logging with detailed error tracking
- Enhanced navigation with page jumping capabilities (R1/R2, L1/L2)
- Improved input responsiveness with optimized button handling
- Clean, production-ready codebase with maintainable architecture
- Scrape per system or individual ROM
- Integrates seamlessly with MuOS
- Highly customizable through
config.json - Support for Box Art, Preview and Text (Synopsis)
- Image mask processing capabilities for custom box art and preview image enhancement
- Optional and configurable mask system that applies custom overlays to downloaded artwork
- Option to delete all media for a selected system
- Works on other OSs with minimal adaptation
- Supported media includes
["box-2D", "box-3D", "mixrbv1", "mixrbv2", "ss", "marquee"]
This enhanced version of Artie includes significant improvements over the original:
- Fixed view transition flash issues - Smooth, seamless transitions between screens
- Advanced caching system - Intelligent ROM data and media caching for faster loading
- Enhanced error recovery - Robust error handling with automatic recovery mechanisms
- Improved memory management - Optimized resource usage and cleanup
- Enhanced B button responsiveness - Immediate feedback and consistent behavior
- Page navigation in ROM view - Quick navigation through large ROM collections
- Atomic state transitions - Prevents UI inconsistencies and improves reliability
- Improved input handling - More responsive and accurate control input
- Comprehensive logging system - Detailed logs for troubleshooting and debugging
- Code cleanup and refactoring - Maintainable, well-structured codebase
- Enhanced architecture - Modular design with clear separation of concerns
- Production-ready stability - Extensive testing and error handling
Artie includes powerful image mask processing capabilities that allow you to apply custom overlays and enhancements to your downloaded artwork. This feature is perfect for creating consistent visual themes or adding custom borders and effects to your box art and preview images.
The mask functionality applies custom PNG overlay images to your downloaded artwork, allowing you to:
- Add consistent borders or frames to all artwork
- Apply visual effects like shadows, glows, or textures
- Create themed collections with matching visual styles
- Enhance artwork with custom overlays or watermarks
To enable mask processing, add the following settings to your config.json:
{
"apply_mask": true,
"mask_path": "assets/masks/",
"mask_settings": {
"box_art_mask": "box_mask.png",
"preview_mask": "preview_mask.png",
"opacity": 1.0,
"blend_mode": "overlay"
}
}- Create your mask files: Design PNG images with transparency that will serve as overlays
- Place mask files: Put your mask files in the specified
mask_pathdirectory (default:assets/masks/) - Configure mask settings: Update your
config.jsonto reference your mask files - Enable mask processing: Set
apply_masktotruein your configuration
- PNG format: Required for proper transparency support
- Same dimensions: Masks should match or exceed the dimensions of target artwork
- Alpha channel: Use transparency to control which parts of the mask are applied
- Multiple masks: Different masks can be applied to different media types (box art, previews, etc.)
- Mask processing adds minimal overhead to the scraping process
- Masks are cached after first use for improved performance
- Large mask files may slightly increase processing time
- Disable mask processing if not needed to maximize scraping speed
Artie supports intuitive navigation controls optimized for handheld gaming devices:
- D-pad: Navigate through menus and options
- A button: Select/confirm actions
- B button: Go back/cancel (enhanced responsiveness)
- L1/R1 buttons: Jump by pages in ROM lists for quick navigation
- L2/R2 buttons: Large jumps through ROM collections
- Page navigation: Consistent across both systems and ROM views
- Navigate large ROM collections efficiently with page jumping
- Instant feedback on all button presses
- Consistent behavior across all interface screens
Follow these steps to install Artie:
-
Download the Latest Release:
- Visit the releases page and download the latest version of Artie.
-
Unzip the Downloaded File:
- Extract the contents of the downloaded zip file.
-
Configure Artie:
In
Artie/.artie/config.jsonensure:a)
romsis correctly configured to the path your roms are located.b) Add your Screenscraper credentials.
c) For the systems you are interested to scrape ensure the paths are correct.
d) Optional: Configure mask processing settings if you want to apply custom overlays to artwork.
{
"roms": "/path/to/your/roms",
"screenscraper": {
"username": "your_username",
"password": "your_password"
}
}{
"roms": "/path/to/your/roms",
"screenscraper": {
"username": "your_username",
"password": "your_password"
},
"apply_mask": true,
"mask_path": "assets/masks/",
"mask_settings": {
"box_art_mask": "box_mask.png",
"preview_mask": "preview_mask.png",
"opacity": 1.0,
"blend_mode": "overlay"
}
}apply_mask: Set totrueto enable mask processing,falseto disablemask_path: Directory path where mask files are stored (relative to Artie directory)mask_settings.box_art_mask: Filename of the mask to apply to box art imagesmask_settings.preview_mask: Filename of the mask to apply to preview imagesmask_settings.opacity: Mask opacity (0.0 to 1.0, where 1.0 is fully opaque)mask_settings.blend_mode: How the mask blends with the artwork ("overlay", "multiply", "screen")
-
Copy Files to MuOS:
- Copy the
Artiedirectory to/mnt/mmc/MUOS/application/.
This could be done via CLI with:
scp -r Artie/ root@<your IP>:/mnt/mmc/MUOS/application/ - Copy the
-
Launch Artie Scraper:
- Open MuOS and launch Artie Scraper from your applications menu.
Always check the log file first: Before reporting any errors or issues, please check the log file located at:
/mnt/mmc/MUOS/application/.artie/log.txt
This file contains detailed information about any errors, performance issues, or unexpected behavior that can help diagnose problems quickly.
- Check that all files are properly copied to
/mnt/mmc/MUOS/application/Artie/ - Verify that
config.jsonis properly formatted - Check the log file for specific error messages
- The caching system should improve performance after initial use
- Check available storage space on your device
- Review the log file for any caching issues
- Ensure your device's controls are properly calibrated
- Try restarting the application if navigation becomes unresponsive
- Check for any error messages in the log file
- Verify your Screenscraper credentials in
config.json - Check your internet connection
- Review API rate limiting messages in the log file
- Ensure ROM file paths are correctly configured
- Check that media files were successfully downloaded
- Verify file permissions and storage space
- Review the log file for download errors
- Masks not applying: Verify that
apply_maskis set totrueinconfig.json - Mask files not found: Check that mask files exist in the specified
mask_pathdirectory - Poor mask quality: Ensure mask files are PNG format with proper alpha channels
- Performance issues: Large mask files can slow processing - consider optimizing mask file sizes
- Incorrect positioning: Verify mask dimensions match or exceed target artwork dimensions
- Blend mode problems: Try different
blend_modesettings ("overlay", "multiply", "screen") for better results
- Check the log file for mask processing messages
- Verify processed images have the expected overlay effects
- Ensure mask files are properly formatted PNG images with transparency
- Test with a simple mask first before using complex designs
- Disable mask processing (
apply_mask: false) if not needed for faster scraping - Use optimized PNG files to reduce processing time
- Consider mask file sizes - larger files require more processing power
- Monitor available storage space as processed images may be larger
If you continue to experience issues after checking the log file and trying the solutions above:
- Include relevant portions of your
log.txtfile when reporting issues - Provide your device model and MuOS version
- Describe the steps that led to the problem
- Open an issue on the GitHub issues page
- Atomic state transitions: Ensures UI consistency and prevents race conditions
- Advanced caching: Intelligent ROM data and media caching with automatic cleanup
- Modular design: Clean separation between UI, data management, and API layers
- Error recovery: Comprehensive error handling with graceful degradation
- Optimized rendering: Smooth transitions and responsive UI updates
- Memory management: Efficient resource usage and automatic cleanup
- Caching strategy: Smart caching of ROM metadata and artwork
- Input optimization: Low-latency input handling for responsive controls
- Comprehensive logging: Detailed logs for all operations and errors
- Performance monitoring: Tracking of load times and resource usage
- Error tracking: Detailed error information for troubleshooting
- Debug information: Helpful debugging data for development and support
We welcome contributions! Feel free to open issues or submit pull requests (PRs) to help improve Artie.
-
Fork the Repository:
- Click the "Fork" button at the top right of the repository page.
-
Clone Your Fork:
- Clone your forked repository to your local machine using
git clone.
- Clone your forked repository to your local machine using
-
Create a Branch:
- Create a new branch for your feature or bug fix.
-
Make Changes:
- Implement your changes and commit them with clear and concise messages.
-
Submit a Pull Request:
- Push your changes to your fork and submit a pull request to the main repository. Be sure to mention what feature you are implementing or which bug you are fixing.
If you encounter any bugs, please:
- Check the log file first at
/mnt/mmc/MUOS/application/.artie/log.txt - Open an issue on the GitHub issues page with:
- Detailed information about the problem
- Relevant log file excerpts
- Steps to reproduce the issue
- Your device and MuOS version information
This project is licensed under the MIT License. See the LICENSE file for details.
Thank you for using Artie! This enhanced version provides a significantly improved experience with better performance, reliability, and user experience on your Anbernic device.

