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
@otonoton Can you elaborate more? It might depend on the image you’re using?
I can’t reproduce your comment,
-all:allis not working for me (as the groupalldoesn’t exist according to the documentation)?-jshould just specify the format as JSON, but doesn’t change which groups get read out.