Last active
August 29, 2015 14:05
-
-
Save ghickman/37fedf9cdbca138b4144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/bash | |
# use bash 4 from homebrew | |
set -e | |
shopt -s globstar | |
FORMAT="%Y-%m-%d_%H-%M-%S" | |
# Video files | |
exiftool -v -r -ext MOV -ext MP4 -ext AVI -ext 3GP -FileName\<CreateDate -d $FORMAT.%%e . | |
# Images | |
jhead -autorot -ft -dt -n$FORMAT **/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment