Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0x90d/videoduplicatefinder
Video Duplicate Finder - Crossplatform
https://github.com/0x90d/videoduplicatefinder
Last synced: 3 days ago
JSON representation
Video Duplicate Finder - Crossplatform
- Host: GitHub
- URL: https://github.com/0x90d/videoduplicatefinder
- Owner: 0x90d
- Created: 2019-01-08T02:27:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T20:17:15.000Z (5 months ago)
- Last Synced: 2024-12-12T08:03:07.059Z (10 days ago)
- Language: C#
- Size: 748 KB
- Stars: 2,033
- Watchers: 54
- Forks: 194
- Open Issues: 51
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-useful-projects - <img src="https://icon.horse/icon/github.com" height="20px" align="center"/>/0x90d/videoduplicatefinder - Duplicate video and image finder (Jump To / Media)
- awesome-useful-projects - <img src="https://icon.horse/icon/github.com" height="20px" align="center"/>/0x90d/videoduplicatefinder - Duplicate video and image finder (Jump To / Media)
README
# Video Duplicate Finder
Video Duplicate Finder is a cross-platform software to find duplicated video (and image) files on hard disk based on similiarity. That means unlike other duplicate finders this one does also finds duplicates which have a different resolution, frame rate and even watermarked.# Features
- Cross-platform
- Fast scanning speed
- Ultra fast rescan
- Optional calling ffmpeg functions natively for even more speed
- Finds duplicate videos / images based on similarity
- Windows, Linux and MacOS GUI# Binaries
[Daily build](https://github.com/0x90d/videoduplicatefinder/releases/tag/3.0.x) (You need to download FFmpeg and FFprobe yourself, see below! Please note the attachments of this release are automatically created and replaced on every new commit.)
# Requirements
#### FFmpeg & FFprobe:
#### Windows user:
Get latest package from https://ffmpeg.org/download.html I recommend the full (GPL) shared version. If you want to use native ffmpeg binding you **must** use the shared version.Extract ffmpeg and ffprobe into the same directory of VDF.GUI.dll or into a sub folder called `bin`. Or make sure it can be found in `PATH` system environment variable
#### Linux user:
Installing ffmpeg:
```
sudo apt-get update
sudo apt-get install ffmpeg
```
Open terminal in VDF folder and execute `./VDF.GUI`
You may need to set execute permission first `sudo chmod 777 VDF.GUI`#### MacOS user:
Install ffmpeg / ffprobe using homebrewOpen terminal in VDF folder and execute `./VDF.GUI` or if you have .NET installed `dotnet VDF.GUI.dll`
You may get a permission error. Open system settings of your Mac, go to `Privacy & Security` and then `Developer Tools`. Now add `Terminal` to the list.# Screenshots (slightly outdated)
# License
Video Duplicate Finder is licensed under GPLv3# Credits / Third Party
- [Avalonia](https://github.com/AvaloniaUI/Avalonia)
- [ActiPro Avalonia Controls (Free Edition)](https://github.com/Actipro/Avalonia-Controls)
- [FFmpeg.AutoGen](https://github.com/Ruslan-B/FFmpeg.AutoGen)
- [protobuf-net](https://github.com/protobuf-net/protobuf-net)
- [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp)# Building
- .NET 7.x
- Visual Studio 2022 is recommended# Committing
- Create a pull request for each addition or fix - do NOT merge them into one PR
- Unless it refers to an existing issue, write into your pull request what it does
- For larger PRs I recommend you create an issue for discussion first