Can I wrangle the configuration to read exif data from a RAF file? My test using a .RAF file: ``` let exif = await exifr.parse(file, ["Model"]); ``` Outputs to my console: ``` Unknown file format ``` Presumably thrown from setup() in Exifr.mjs Is this a case of a missing required file parser? If prior work is in any way useful: - https://exiftool.org/TagNames/FujiFilm.html - https://github.com/franzwong/fujifilm-raf-reader/blob/master/index.js
Can I wrangle the configuration to read exif data from a RAF file?
My test using a .RAF file:
Outputs to my console:
Presumably thrown from setup() in Exifr.mjs
Is this a case of a missing required file parser?
If prior work is in any way useful: