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
is there a way i can just get the object and not in a list ?