{"id":20200245,"url":"https://github.com/jsuyog2/duplicate-finder","last_synced_at":"2026-02-06T21:31:15.529Z","repository":{"id":170159365,"uuid":"613743464","full_name":"jsuyog2/duplicate-finder","owner":"jsuyog2","description":"A Python application for detecting and managing duplicate images and videos in a specified folder. Features include a user-friendly GUI built with PySimpleGUI, real-time progress updates, and automatic moving of duplicates to organized directories. Utilizes the difPy library for image comparisons and a custom video comparison class.","archived":false,"fork":false,"pushed_at":"2024-08-23T07:16:03.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-21T22:38:29.149Z","etag":null,"topics":["automation","difpy","duplicate-detection","file-management","filesystem-operations","gui","image-processing","progress-bar","pysimplegui","python","video-processing"],"latest_commit_sha":null,"homepage":"https://github.com/jsuyog2/duplicate-finder","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsuyog2.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-14T07:22:33.000Z","updated_at":"2024-11-10T13:01:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"60f7ae6b-c4a0-4434-89ad-74a007e46f23","html_url":"https://github.com/jsuyog2/duplicate-finder","commit_stats":null,"previous_names":["jsuyog2/duplicate-finder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jsuyog2/duplicate-finder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsuyog2%2Fduplicate-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsuyog2%2Fduplicate-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsuyog2%2Fduplicate-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsuyog2%2Fduplicate-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsuyog2","download_url":"https://codeload.github.com/jsuyog2/duplicate-finder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsuyog2%2Fduplicate-finder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29177399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T20:14:21.878Z","status":"ssl_error","status_checked_at":"2026-02-06T20:14:21.443Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","difpy","duplicate-detection","file-management","filesystem-operations","gui","image-processing","progress-bar","pysimplegui","python","video-processing"],"created_at":"2024-11-14T04:42:36.601Z","updated_at":"2026-02-06T21:31:15.513Z","avatar_url":"https://github.com/jsuyog2.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Duplicate Finder\n\n## Overview\n\nDuplicate Finder is a Python application designed to identify and handle duplicate images and videos in a specified directory. The application uses the `difPy` library for image comparison and a custom `DuplicateFinder` class for video comparison. It provides a graphical user interface (GUI) built with PySimpleGUI to facilitate user interaction and display results.\n\n## Features\n\n- **Image Duplicate Finder**: Detects duplicate images in a specified folder and moves them to a dedicated directory.\n- **Video Duplicate Finder**: Identifies duplicate videos and moves them to a separate directory.\n- **Progress Bar**: Visual feedback of the scan progress through a progress bar in the GUI.\n- **Results Display**: Shows a summary of found duplicates in the application window.\n\n## Installation\n\nTo run the Duplicate Finder application, follow these steps:\n\n1. **Clone the Repository**\n\n    ```bash\n    git clone https://github.com/jsuyog2/duplicate-finder.git\n    cd duplicate-finder\n    ```\n\n2. **Install Dependencies**\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n## Usage\n\n1. **Run the Application**\n\n    ```bash\n    python app.py\n    ```\n\n2. **Using the GUI**\n\n    - Click on **\"Browse\"** to select the folder you want to scan for duplicates.\n    - Click on **\"Find Duplicates\"** to start the scanning process.\n    - The progress bar will update as the scan progresses.\n    - The results will be displayed in the results area, showing duplicate images and videos.\n\n## File Structure\n\n- `app.py`: The main application file that initializes and runs the GUI.\n- `lib/`\n  - `ImageDuplicateFinder.py`: Contains the `ImageDuplicateFinder` class for finding duplicate images.\n  - `VideoDuplicateFinder.py`: Contains the `VideoDuplicateFinder` class for finding duplicate videos.\n  - `DuplicateFinder.py`: Custom class for finding duplicate videos (used by `VideoDuplicateFinder`).\n- `requirements.txt`: Lists the required Python packages.\n\n## Example\n\nHere's how the output might look after scanning a folder:\n\n```\nDuplicate images found:\nOriginal: /path/to/original/image1.jpg\nDuplicates: /path/to/duplicate/image1_1.jpg, /path/to/duplicate/image1_2.jpg\n\nDuplicate videos found:\nOriginal: /path/to/original/video1.mp4\nDuplicates: /path/to/duplicate/video1_1.mp4, /path/to/duplicate/video1_2.mp4\n```\n\n## Contributing\n\nFeel free to contribute to this project by submitting issues or pull requests. \n\n1. Fork the repository.\n2. Create a feature branch (`git checkout -b feature/your-feature`).\n3. Commit your changes (`git commit -am 'Add new feature'`).\n4. Push to the branch (`git push origin feature/your-feature`).\n5. Create a new Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any questions or feedback, please contact [jsuyog2@gmail.com](mailto:jsuyog2@gmail.com).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsuyog2%2Fduplicate-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsuyog2%2Fduplicate-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsuyog2%2Fduplicate-finder/lists"}