find_duplicates
Initiate duplicate detection in your media library by comparing metadata or hashing file content. Choose fast metadata matching or accurate SHA256 hashing to group similar files by similarity threshold.
Instructions
Start Tdarr's duplicate detection (POST /api/v2/find-duplicates). 'metadata' compares stream metadata and is fast; 'sha256' hashes file content and is accurate but slow — with sha256, hash_amount controls how much of each file is read. Runs asynchronously; stop it with stop_find_duplicates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Minimum number of matching files to report a group | |
| threshold | Yes | Similarity threshold above which two files count as duplicates | |
| hash_amount | No | How much of each file to hash, for detection_method 'sha256' | |
| detection_method | No | Detection method (default is the server's own default) |