Extract all exif data as list into a json file:
exiftool -j -q dir > data.jsonSort the exif data by the original creation time:
jq 'sort_by(.DateTimeOriginal)' data.jsonExtract exif data and sort by original creation time:
exiftool -j -q *.jpg | jq 'sort_by(.DateTimeOriginal)' > data.json
This seems to leave out a lot of information compared to using
-all:all, even if you combine that with-j. For example with-jI only get a single TagName key, but with-all:allit shows 20 different tags.