Hi all! I am implementing a camera trap survey using Reconyx Hyperfire 2 cameras. I am trying to extract all Time Lapse images from one station. Every time I run the R code I am using to do this, it tells me I am using ExifTool version 11.22, even though I have downloaded the most recent version of ExifTool and I have deleted all other earlier versions from my Mac. I am also running VMWare fusion so I can run PC software on my Mac, though I have deleted any files related to ExifTool that were on that also. Any help would be so much appreciated!
In a Terminal window (/Applications/Utilities/Terminal.app), type "exiftool -ver"
If this shows 11.22, then type "which exiftool"
This will show the path to the version you are running.
- Phil
Thank you so much Phil!
I have done this and it reports 12.21 which is great. But when I try to run the R code again it still reports 11.22
> action <- "extract"
> library(exifr)
Using ExifTool version 11.22
>
I am baffled! Any further advice would be amazing, thank you!
Is there some sort of .ini or config file for the package? If so, examine that to see what path it might be using to call exiftool.
Maybe search the system for a file from the exiftool code. For example, see if you have ExifTool.pm located in another location.
This is a question for the person responsible for the R package.
- Phil
I did notice that the package was using the old queensu.ca link. Put in an issue and got a response from the author in less than 10 minutes, so they might respond to an inquiry as to the location.
Or you could run the update_internal_exifr.R (https://github.com/paleolimbot/exifr/blob/master/data-raw/update_internal_exifr.R) script that's included in the package.
Thank you Phil and StarGeek! Valuable lesson learned for me today. It was an R issue and I needed to update my R package.... thank you both for help and support in working through this for me. I really appreciate it!