X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=scripts.git;a=blobdiff_plain;f=redatepic.sh;h=3a379abb9e13abe71f9b406ee93bd21f56421079;hp=fc6a6065d6675bb44212548cdd5abf7cfa1f8bdd;hb=HEAD;hpb=c89dc8888f4761530a32fcc331a20d1a318f074d diff --git a/redatepic.sh b/redatepic.sh index fc6a606..3a379ab 100755 --- a/redatepic.sh +++ b/redatepic.sh @@ -23,10 +23,13 @@ while [ $1 ]; do REFERENCE=${NAME/MOV/JPG} - if [[ -f ${REFERENCE} ]]; then - + if [[ -f ${REFERENCE} ]] && file ${REFERENCE} | \grep -q image; 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 + TAG=$(exif -t 0x0132 ${REFERENCE} | grep Value) + fi if [[ ${TAG} ]]; then TIMESTAMP=$(echo ${TAG} | sed -e \ @@ -34,7 +37,7 @@ while [ $1 ]; do touch -t $TIMESTAMP ${NAME} ls -l ${NAME} else - echo "++ No exif tag in ${NAME}, can not set the date properly." + echo "++ No proper exif tag for ${NAME}, can not set the date properly." fi else