Extract all exif data as list into a json file:
exiftool -j -q dir > data.json
Sort the exif data by the original creation time:
jq 'sort_by(.DateTimeOriginal)' data.json
Extract exif data and sort by original creation time:
exiftool -j -q *.jpg | jq 'sort_by(.DateTimeOriginal)' > data.json
is there a way i can just get the object and not in a list ?