X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=scripts.git;a=blobdiff_plain;f=redatepic.sh;h=9d3e9c354f7fdc32a0662e02aef50162ad5808b0;hp=fc6a6065d6675bb44212548cdd5abf7cfa1f8bdd;hb=71b861a1c642e2f955ef58b152354824d7d58404;hpb=17c692cb4145a9a3f67d1e9cbcd0ac81d28c0b62 diff --git a/redatepic.sh b/redatepic.sh index fc6a606..9d3e9c3 100755 --- a/redatepic.sh +++ b/redatepic.sh @@ -26,7 +26,13 @@ while [ $1 ]; do if [[ -f ${REFERENCE} ]]; then # TAG=$(exif --ifd=EXIF -t "Date and Time (original)" ${REFERENCE} | grep Value) - TAG=$(exif --ifd=EXIF -t 0x9003 ${REFERENCE} | grep Value) + TAG=$(exif 2>/dev/null --ifd=EXIF -t 0x9003 ${REFERENCE} | grep Value) + + if [[ ! "${TAG}" ]]; then + echo >&2 " Cannot find the \"Date and Time (original)\" exif tag in ${REFERENCE}" + echo >&2 " Looking for \"Date and Time\"" + TAG=$(exif -t 0x0132 ${REFERENCE} | grep Value) + fi if [[ ${TAG} ]]; then TIMESTAMP=$(echo ${TAG} | sed -e \