Skip to content

REMOV DUPS is a free Windows app that removes duplicate images and videos. Using perceptual hashing, it detects even visually similar files. With options to delete or move duplicates, it’s fast, user-friendly, and supports multiple file formats like JPG, PNG, MP4, and HEIC. No installation needed—just download and declutter!

License

Notifications You must be signed in to change notification settings

Success1308/REMOV-DUPS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REMOV DUPS

Image

My Journey to Solving a Personal Problem

A while back, I faced a frustrating problem: my devices were cluttered with duplicate images and videos. Every tool I found to clean up this mess either came with a hefty price tag or was riddled with limitations. I needed a solution that was effective and free. Since nothing fit the bill, I decided to take matters into my own hands and create a tool that solves the problem once and for all.

That’s how REMOV DUPS was born—a Windows app designed to help not only me but also others like you who are tired of battling duplicate files. And the best part? It’s free and straightforward to use!


What This App Does

REMOV DUPS is a Windows desktop application that scans a folder for duplicate images and videos. It identifies duplicates based on perceptual hashing, ensuring that even visually similar files are detected. Once duplicates are identified, the app allows you to:

  1. Delete the duplicates: Free up space on your device instantly.
  2. Move the duplicates: Organize them into a separate folder for review later.

With its modern interface and efficient processing, this tool is designed to make cleaning up your files as simple as possible.


How to Use It

  1. Download the App Simply download the executable folder named OUTPUT. It contains the app icon (app_icon.ico), logo (app_logo1.png), and the executable file. All these files must be in the same folder for the app to run. Once ready, just run the executable file—no installation required!

  2. Select a Folder Open the app and select the folder you want to scan for duplicates.

  3. Choose Your Action Decide whether you want to delete duplicates immediately or move them to a dedicated folder.

  4. Start the Process Hit the "Start Removing Duplicates" button, and let the app do the rest! The progress bar will keep you updated as files are scanned and processed.


How to Generate the Executable File

  1. Create a Virtual Environment

    python -m venv venv
    .\venv\Scripts\Activate
  2. Install Required Packages

    pip install auto-py-to-exe
    pip install customtkinter pillow pillow-heif opencv-python-headless imagehash
  3. Launch auto-py-to-exe

    auto-py-to-exe
    • In auto-py-to-exe, select the "One File" option and set it as a Windows-based file.
    • Add the path to the icon file (app_icon.ico).
    • Include the logo file (app_logo1.png) under "Additional Files."
    • Click "Convert .py to .exe."

    The executable file will be generated in the OUTPUT folder.

  4. Deactivate the Virtual Environment

    deactivate

Why I Made This App

When I couldn’t find a free and reliable solution for removing duplicate images, I decided to build my own. I learned about image processing, perceptual hashing, and UI design along the way. This app is the result of countless hours of coding and testing, driven by the goal of solving my own problem and helping others like me.

404982407-88db4b12-93da-42f5-9255-241267f0a0e6


Features

  • Supports Multiple File Types: Works with images (e.g., JPG, PNG, HEIC) and videos (e.g., MP4, MOV).
  • User-Friendly Interface: Intuitive design with clear instructions.
  • Customizable Actions: Choose between deleting or moving duplicates.
  • Fast and Efficient: Uses multi-threading to process files quickly.
  • Free to Use: No hidden costs or premium versions—just download and go!

Technical Tools Used

Creating REMOV DUPS involved leveraging a variety of technical tools and libraries:

  • Python: The core programming language used to develop the application.
  • Pillow (PIL): For handling and processing image files.
  • imagehash: To compute perceptual hashes for identifying duplicate images.
  • OpenCV (cv2): For video frame extraction and processing.
  • CustomTkinter: For building a modern and user-friendly graphical interface.
  • pillow-heif: To add support for HEIC/HEIF image formats.
  • ThreadPoolExecutor: For efficient multi-threaded file processing.
  • PyInstaller: To package the application into a standalone executable for Windows.

This project demonstrates my Python skills, showcasing proficiency in image and video processing, GUI design, multi-threading, and packaging applications for deployment.


Algorithm Used

The application uses a combination of algorithms and techniques to identify duplicate files efficiently:

  1. Perceptual Hashing (pHash):

    • Images are processed using the imagehash library, which generates a perceptual hash. This allows the app to detect visually similar images, even if they are resized or slightly altered.
  2. Video Frame Hashing:

    • The first frame of video files is extracted using OpenCV, and a perceptual hash is generated. This ensures that visually identical videos are identified as duplicates.
  3. Multi-threading:

    • File processing is handled using ThreadPoolExecutor to enable concurrent execution, speeding up the scanning process.
  4. File Path Sorting:

    • Duplicate files are sorted based on relative file path and length, ensuring consistency in how duplicates are handled.
  5. Efficient File Handling:

    • The app only processes supported file types (e.g., images and videos), reducing unnecessary overhead.

Future Enhancements

Here are some potential improvements and features planned for future versions:

  1. Cross-Platform Support:

    • Extend support to macOS and Linux systems.
  2. Advanced Duplicate Detection:

    • Incorporate metadata comparison and file content hashing for more precise duplicate detection.
  3. Customizable Scanning Options:

    • Allow users to configure sensitivity for detecting visually similar files.
  4. Cloud Integration:

    • Add support for scanning files directly from cloud storage platforms like Google Drive and Dropbox.
  5. Detailed Reports:

    • Generate and save reports of scanned duplicates for user review.
  6. Localization:

    • Provide support for multiple languages to reach a wider audience.

Try It Yourself

If you’re tired of paid tools or manual cleanup, give REMOV DUPS a try. I built it to solve my problem, and now it’s here to solve yours too. Let’s keep our devices clutter-free together!


License

MIT License

Copyright (c) 2025 Success Ambaliya

About

REMOV DUPS is a free Windows app that removes duplicate images and videos. Using perceptual hashing, it detects even visually similar files. With options to delete or move duplicates, it’s fast, user-friendly, and supports multiple file formats like JPG, PNG, MP4, and HEIC. No installation needed—just download and declutter!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages