Random Jibber Jabber Thread

Johnei

Well-Known Member
Scrub all metadata from a .jpg picture file:
exiftool -all= filename.jpg

Scrub all metadata from all .jpg picture files in the currect directory:
for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done

Scrub only geotag metadata information from a .jpg picture file:
exiftool -geotag= filename.jpg

Scrub only geotag metadata information from all .jpg picture files in the currect directory:
for i in *.jpg; do echo "Processing $i"; exiftool -geotag= "$i"; done
 

dux

Well-Known Member
Scrub all metadata from a .jpg picture file:
exiftool -all= filename.jpg

Scrub all metadata from all .jpg picture files in the currect directory:
for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done

Scrub only geotag metadata information from a .jpg picture file:
exiftool -geotag= filename.jpg

Scrub only geotag metadata information from all .jpg picture files in the currect directory:
for i in *.jpg; do echo "Processing $i"; exiftool -geotag= "$i"; done

F'ing right! Kinda what I thought..









WTF??
 

Johnei

Well-Known Member
F'ing right! Kinda what I thought..









WTF??
Many times pictures will contain hidden data called metadata that has your gps location info embedded there, and all kinds of other info including cam specs, model#'s dates of pics, dates when they were accessed and dates they were modified and even serial numbers sometimes. My post above is a note to myself where I can find the commands for when uploading pics to clear that data off my pics before uploading since I plan on being around here for a while. WTF answer for you.
:peace:
 

dux

Well-Known Member
Many times pictures will contain hidden data called metadata that has your gps location info embedded there, and all kinds of other info including cam specs, model#'s dates of pics, dates when they were accessed and dates they were modified and even serial numbers sometimes. My post above is a note to myself where I can find the commands for when uploading pics to clear that data off my pics before uploading since I plan on being around here for a while. WTF answer for you.
:peace:
bf4e6efe8fe79bf62cd97ffcb7dfae92.gif
Haha, seriously. I'm one of those computer dumb Ass's that went to high school in the 80's and thought computers were dumb only to realize I was dumb for not liking the stupid F'ing thing's..
 
Top