ExifTool Forum

ExifTool => Newbies => Topic started by: clem on December 05, 2019, 02:34:20 AM

Title: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: clem on December 05, 2019, 02:34:20 AM
I'm trying to reduce my reliance on Lightroom's file handling routines... but my efforts so far at doing this with exiftool aren't going so well

I'd like to be able to get exiftool to filter and rename and organize the NEF, CR2, JPEG, JPG and HEIC files from a straight file copy dump on a hard drive folder (called "Macintosh HD:SD card pics")  into a hierarchical folder... with the files named by time and organized in a nesting order

Final sequence would result in a  folder hierarchy like this:

2019
-----11
--------14


and all individual files renamed to the millisecond to account for high frame rate captures with more than one photo taken within a single second.
YYYY-MM-DD-HHMMSS-MS

2019-11-14-143821-21.NEF

So ultimately the resulting file would be nested as:

Macintosh HD:Pictures:2019:11:14:2019-11-14-143821-21.NEF

thanks for any tips!
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: StarGeek on December 05, 2019, 03:10:23 AM
Try something like this
exiftool -d '%Y/%m/%d/%Y-%m-%d-%H%M%S' '-Filename</path/to/Pictures/${DateTimeOriginal}-${SubSecTimeOriginal}.%e' /path/to/SDCard/
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: Phil Harvey on December 05, 2019, 07:03:52 AM
I would add -o . to the command so files are copied instead of moved.  I don't think it is a good idea to delete stuff from an SD card -- instead, format the card in the camera once you are sure all of the files have been transferred OK.

- Phil
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: clem on December 06, 2019, 09:13:56 PM
Thank you to both of you for your help... I have managed to piece together two exiftool sequences that do the trick based upon your combined suggestions, however, is there a way I can do this with a single command?

exiftool -o . '-Directory<CreateDate' -d /Users/Shared/TestEXIF/Sorted/%Y/%m/%d -r /Users/Shared/TestEXIF/Source/

and then after cd'ing into the /Users/Shared/TestEXIF/Sorted/ folder issuing this:

exiftool '-FileName<DateTimeOriginal' -d "%Y-%m-%d %H.%M.%S%%-c.%%e" .

I'm hoping that this can be combined into a single line.

The only caveat I see is that this doesn't include the SubSecTimeOriginal ... when I do that, some of the files which do NOT have sub-second times are error'ed out because they would be duplicates of the preceding file in the sequences. I don't know how to workaround this, so the above was the best option I could come up with.

Thoughts?

Thanks in advance!
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: Phil Harvey on December 06, 2019, 09:52:51 PM
Did you use DateTimeOriginal for the file name, and CreateDate for the directory on purpose?

If you could use the same tag for both, you can do this:

exiftool -o . "-FileName<DateTimeOriginal" -d "/Users/Shared/TestEXIF/Sorted/%Y/%m/%d/%Y-%m-%d %H.%M.%S%%-c.%%e" -r /Users/Shared/TestEXIF/Source/

...otherwise it gets a bit more complicated.

- Phil
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: StarGeek on December 06, 2019, 09:53:17 PM
Try this

exiftool -o . -r -d '%Y-%m-%d %H.%M.%S' '-Filename</Users/Shared/TestEXIF/Sorted/${CreateDate;DateFmt("%Y/%m/%d")}/${DateTimeOriginal}%-c.%e' '-Filename</Users/Shared/TestEXIF/Sorted/${CreateDate;DateFmt("%Y/%m/%d")}/${DateTimeOriginal}-${SubSecTimeOriginal}%-c.%e' /Users/Shared/TestEXIF/Source/

Files that do contain SubSecTimeOriginal will be processed by the second part while files that don't are processed by the first part.  The %-c should add a copy number in cases where there would be duplicate filenames.

I moved the %c and %e out of the -d (dateFormat) option (https://exiftool.org/exiftool_pod.html#d-FMT--dateFormat) format string so that removes the extra percent sign on those two variables.  The DateFmt helper function is an Advanced formatting feature (https://exiftool.org/exiftool_pod.html#Advanced-formatting-feature).
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: Phil Harvey on December 06, 2019, 09:55:04 PM
...but I didn't notice you wanted subseconds.  StarGeek reads more thoroughly than I do. ;)

- Phil
Title: Re: Replicating w/exiftool Lightroom Import, Move & Rename Sequence
Post by: clem on December 06, 2019, 10:06:44 PM
You two are incredible.

I'm in awe.

Such fast replies and darnnitall.... it works great! :-)

Thank you very much!  :)