I see you're having trouble extracting metadata from your camera trap videos using camtrapR. Let's address your issues one by one.
Date/Time Extraction from VideosThe primary issue seems to be that camtrapR is unable to read date/time information from many of your video files. This is a common challenge with videos because unlike JPG images, video files don't have a standardized metadata tag for storing date/time information.
When working with videos in camtrapR, you need to:
Looking at your error messages, many of your directories show: "no readable date/time information. Skipping"
Here's how to troubleshoot this:
1. Check available metadata tags in your videosTry examining a single video file that's working and one that's not:
Check for date/time related tags in the output. Common video date/time tags include:
If you find a different tag available in your problematic videos, try using that instead.
Regarding how camtrapR identifies duplicates:
The function recordTable() considers records as duplicates if they:
Additionally, there's temporal filtering through the parameter minDeltaTime (in minutes), which lets you define what constitutes an independent record. By default, it's set to 0, meaning all records are returned. If you set it to, for example, 60, then records of the same species at the same station within 60 minutes of each other would be considered non-independent (but that is not the same as duplicates).
To keep all records without removing any "duplicates", try: