Read and edit JPEG Exif data from command line
August 11th, 2012
| Tags: commandline, multimedia, photos, ubuntu
Most digital cameras store Exif data in the JPEG photo files. This includes things like date and time, camera model and camera settings and in some cases even GPS coordinates. jhead is a very useful command line utility which can read and edit the Exif data. For example, you may wish to remove the data from photos published online.
Another useful thing is to rename photos using the date and time information stored in Exif (note: read the documentation before running):
1 |
$jhead -n%Y%m%d-%H%M%S *.jpg |
And best of all jhead is in the Ubuntu universe repository, so installing it is as simple as:
1 |
$sudo apt-get install jhead |
Leave a comment
| Trackback