EXIF editor?

Currently reading
EXIF editor?

1,009
226
NAS
DS224+, RS820+, DS718+
Operating system
  1. Windows
Mobile operating system
  1. iOS
I'm looking for a Windows 10 EXIF editor to edit some photos in PhotoStation. Some items I need to update are missing "Date taken & Time" and Location of photo. Would prefer a free or opensource app.
 
True, not everything, but it does allow date, camera manufacturer and camera model which I use.
 
Upvote 0
ExifTool by PH is a swiss knife for all possible batch tasks. Really recommend.
There are plenty features and scripting is famous.

I like also export to CSV for an advanced data analysis 🧐 from the exif metadata
 
Upvote 0

Use exiftool command line version on my w10 pc so thought I would give this a try (no probs about using command line but if there's a GUI version available to make life easier😉). Unfortunately seems to have intermittent problems extracting/refreshing tag values in the tag tree view. Doesn't seem to have been updated for a long time so had to revert back to command line version. Will probably give exit pilot (mentioned further down this thread) a try since it appears to be a live project
 
Upvote 0
When you will transfer (backup) photos from your smartphone, you will get files with "Modification date" of day of the backup.
Then you can change this date back to Creation Date easy by the ExifTool:

Bash:
exiftool -CreateDate>FileModifyDate 'SourcePath'
e.g.: exiftool -CreateDate>FileModifyDate '/volume1/photos/...'

When you are not familiar with the JPEG extension and you need clean data structure, you can use:
Bash:
exiftool -if '$filetype eq JPEG' -filename=%f.jpg --ext jpg  'SourcePath'
JPEG: current format (case sensitive) filter

When you like really clean data structure, you can rename the files by:
Bash:
exiftool -fileOrder CreateDate -ignoreMinorErrors -recurse -extension jpg -d '%Y %m %d-iPhone%%-04.c.%%e' -filename<CreateDate 'SourcePath'
where:
- file order: based on Creation EXIF Date from each file
- ignoreMinorErrors: an Error ignore for simple errors e.g. when the file doesn't contain the Creation date. Useful, your process will continue.
- recurse: recursively process subdirectories
- extension: filter just for the "jpg" file type
- d: a n option to change filename by defined structure '%Y %m %d-iPhone%%-04.c.%%e' ... you will get "2020 07 21-iPhone-0054.jpg" file name
- filename<CreateDate: flename structure in the "-d" option is sourced from CreateDate EXIF record
- Source path as usual

enjoy
 
Upvote 0
OFC you need to clean/dedupe the files first, to save the NAS effort and disk space, especially when you will try to backup all photo files from the "Camera roll" & "Social media", don't mention video files.
Duplicate File Detective; it's worth the cost:
- SHA512 bits checksum
- byte for byte content match
- defined marking of the evaluated files (less effort for the deletion
- backup before delete
- and many others.

BTW:
- useful for deep music files dedupe
- for every kind of NAS content.
And the algorithm is really like a SkyRocket.

1633629202953.png

From the producers of the best storage space management (local or NAS) FolderSizes:
 
Upvote 0

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Trending threads

Back
Top