// the find
mvdctop/Movie_Data_Capture
Local Movies Organizer
Movie Data Capture scrapes metadata (titles, posters, cast, ratings) for adult video files and organizes them into Plex/Emby/Jellyfin/Kodi-compatible folder structures. It targets NAS users who want a media server that treats JAV libraries the same way it treats Western films. The Chinese-language README and the genre it serves make this a narrow-audience tool.
Multi-source scraping across several metadata sites with fallback logic; CNN-based face detection in ImageProcessing/cnn.py for poster cropping is a real technical addition rather than just API glue; Docker support with a compose file means NAS deployment is straightforward; number_parser.py handles the messy ID formats across different studios without relying on a single naming convention.
The README is almost empty in English — the project website hosts the actual documentation, so if that goes down you're reading source code; scraping-based metadata tools are perpetually fragile and there's no indication of how broken scrapers are flagged or recovered; config.ini carries a lot of magic strings with no validation, so misconfiguration fails silently at runtime rather than startup; the codebase is a single large Python file (core.py, ADC_function.py) with no test suite visible, making contributions or forks risky.