Skip to content

Instantly share code, notes, and snippets.

View axelsimon's full-sized avatar

axel simon axelsimon

View GitHub Profile
@axelsimon
axelsimon / img_metadata.md
Last active February 28, 2020 13:59
Quick wiping of picture metada

Removing most identifiable metada (geodata, make and model of the camera):

A short reminder on useful exiftool commands.

for i in *.jpg; do echo "dealing with $i"; exiftool -geotag= -make= -model= -software= "$i"; done without using wildcards.
Or to use wildcards: exiftool -geotag= -make= -model= *.jpg *.jpeg *.JPEG

Doing it on directly on a entire directory: