Como organizar / classificar imagens por dados de imagem EXIF

6

Recuperei imagens de uma partição perdida e preciso classificá-las ou colocá-las em uma pasta pela data de criação dos dados EXIF de cada imagem

Eu instalei o digiKam e também o shotwell, mas não encontrei a maneira de fazer isso em nenhuma das opções

Alguém pode me explicar como fazê-lo com qualquer um desses 2 programas ou até mesmo um novo programa para Ubutun 13

    
por Mauricio Gracia Gutierrez 13.01.2014 / 00:27

6 respostas

6

Minha solução favorita é definir a data do arquivo igual à data da foto exif. Fazendo isso, você pode classificar os arquivos usando qualquer ferramenta de explorador de arquivos.

  1. Instale o jhead ( apt-get install jhead )
  2. Vá para o diretório de fotos e execute este comando jhead -ft * . Isso definirá a data do arquivo no sistema de arquivos com a data de criação dos metadados exif
  3. Agora, basta ir ao menu superior (no Ubuntu, você vai mais com o mouse na parte superior da tela do monitor), selecione Exibir → Ordenar imagens → Por data.
por neves 10.06.2015 / 04:00
4

Se você estiver confortável usando a linha de comando, recomendo usar o exiftool. Entre outras coisas, faz exatamente o que você está tentando fazer. Há um pouco de curva de aprendizado, mas passei horas experimentando cópias de teste de minhas fotos e estou realmente feliz por ter feito isso. Link: link .

Para obtê-lo, abra o Terminal e faça:

sudo apt-get install exiftool

EDIT: Aqui está um exemplo de comando que renomeia os arquivos com base na data de criação no formato YYYYMMDD e acrescenta um número de seqüência no final. Se você ler a documentação, há um comando semelhante que as copia em novas pastas nomeadas com base em dados exif.

exiftool '-filename<CreateDate' -d %Y%m%d%%-.4nc.%%le -r

Espero que isso ajude. Boa sorte!

    
por Scott 13.01.2014 / 04:29
1

Instale o processador batch Phatch Photo. A partir das ações predefinidas, selecione aquela que renomeia os arquivos com data de exif.

    
por galymax 15.05.2016 / 16:42
1

Mais simples usando: jhead -n%Y/%m/%d/%Y%m%d%H%M /Destination/*.jpg

Ele classificará, moverá e renomeará todos os seus JPGs do diretório atual para uma boa estrutura de diretórios com nomes de arquivos exclusivos /Year/Month/Day/YearMonthDayHourMinute.jpg

Funciona apenas na massa de arquivos * .jpg, não na RAW

    
por Michał Grodecki 06.07.2017 / 10:32
0

Uma ótima ferramenta é o Rapid Photo Downloader

  1. Adicionando o PPA

    sudo apt-add-repository ppa:dlynch3/ppa
    
  2. Atualizando e instalando

    sudo apt-get update
    sudo apt-get install rapid-photo-downloader
    

Use sua "partição perdida" como fonte de entrada e configure o caminho de destino / nomes de arquivos com base em seus dados exif no Rapid Photo Downloader

    
por A.B. 12.06.2015 / 08:11
0

Este é o código que estou usando. Ele renomeia as fotos adicionando YYYYMMDD_originalname.jpg

#! /bin/bash
shopt -s globstar || exit
for PIC in **
do
# look only for jpg
if [[ "$PIC" =~ \.JPG$ ]] || [[ "$PIC" =~ \.jpg$ ]]; then
    # ignore jpg that have 8 numbers at beginning followed by _ or after IMG_ or P_ and followed by _ (already date stamped)
    if [[ "$PIC" =~ [[:digit:]]{8}_.*$ ]] || [[ "$PIC" =~ IMG_[[:digit:]]{8}_.*$] ]] || [[ "$PIC" =~ P_[[:digit:]]{8}_.*$] ]]; then
    :
    else
        # get the date and time from the tag
        DATE=$(exiftool -p '$DateTimeOriginal' "$PIC" | sed 's/[: ]//g')
        echo "file_$PIC"
        # customize date, in this case eliminate the time, getting only the date in 8 numbers and adding _
        DATEMOD2=$(echo $DATE | sed -e 's/^\(.\{8\}\).*/_/')
        echo "datemod2_$DATEMOD2"
            # check if DateTimeOriginal was present
            if [[ "$PIC" == "$DATEMOD2$PIC" ]];then
            # as DateTimeOriginal is not present try with HistoryWhen
            DATE=$(exiftool -p '$HistoryWhen' "$PIC" | sed 's/[: ]//g')
            DATEMOD2B=$(echo $DATE | sed -e 's/^\(.\{8\}\).*/_/')
            echo "datemod2B_$DATEMOD2B"
                # check if HistoryWhen is present
                if [[ "$PIC" == "$DATEMOD2B$PIC" ]];then
                # nor the tag DateTimeOriginal, nor HistoryWhen present
                echo "skip"
                else
                # this will be done
                echo "mv -i "$PIC" $(dirname "$PIC")/"$DATEMOD2B""$PIC""
                #uncomment if you like it
                #mv -i "$PIC" $(dirname "$PIC")/"$DATEMOD2B""$PIC"
                fi
            else
            # this will be done
            echo "mv -i "$PIC" $(dirname "$PIC")/"$DATEMOD2""$PIC""
            #uncomment if you like it
            #mv -i "$PIC" $(dirname "$PIC")/"$DATEMOD2""$PIC"
            fi
     fi
fi
done

Com base no link , link

Veja também link

EDIT. Nesta modificação, a data na tag é passada para o nome e também para o atributo date com touch. Além disso, se essas tags não existirem, a tag de data de modificação será passada para o nome do arquivo.

#! /bin/bash
shopt -s globstar || exit
for PIC in **
do
# look only for jpg
if [[ "$PIC" =~ \.JPG$ ]] || [[ "$PIC" =~ \.jpg$ ]]; then
        echo "file_$PIC"
        # get the date and time from the tag DateTimeOriginal
        DATE=$(exiftool -p '$DateTimeOriginal' "$PIC" | sed 's/[: ]//g')
        LONGDATE=$(echo $DATE | sed -e 's/^\(.\{12\}\).*//')
            # check if DateTimeOriginal is 0000... OR empty
            if [[ "$LONGDATE" != "000000000000" ]] && [[ -n "$LONGDATE" ]]; then
            echo "datetimeoriginal_$LONGDATE"
            # modify the attribute date with the info in the tag date
            touch -t $LONGDATE "$PIC"
            # customize date, in this case eliminate the time, getting only the date in 8 numbers and adding _
            DATEMOD2=$(echo $DATE | sed -e 's/^\(.\{8\}\).*/_/')
            echo "datemod2_$DATEMOD2"
                    # skip renaming if
                    # 8 numbers at beginning followed by _ or after IMG_ or P_ and followed by _ (already date stamped)
                    if [[ "$PIC" =~ [[:digit:]]{8}_.*$ ]] || [[ "$PIC" =~ IMG_[[:digit:]]{8}_.*$] ]] || [[ "$PIC" =~ P_[[:digit:]]{8}_.*$] ]]; then
                    :
                    else
                    # this will be done

                    filename=$(basename "$PIC")
                    echo "$filename"
                    echo "mv -i \""$PIC"\" \""$(dirname "$PIC")"/"$DATEMOD2""$filename"\""
                    #uncomment if you like it
                    mv -i "$PIC" "$(dirname "$PIC")/$DATEMOD2$filename"

                    fi
            else
            # get the date and time from the tag HistoryWhen

            DATE=$(exiftool -p '$HistoryWhen' "$PIC" | sed 's/[: ]//g')
            LONGDATE=$(echo $DATE | sed -e 's/^\(.\{12\}\).*//')

            # check if Historywhen is 0000... or empty
                if [[ "$LONGDATE" != "000000000000" ]] && [[ -n "$LONGDATE" ]]; then
                echo "historywhentag_$LONGDATE"

                touch -t $LONGDATE "$PIC"
                DATEMOD2B=$(echo $DATE | sed -e 's/^\(.\{8\}\).*/_/')
                echo "datemod2B_$DATEMOD2B"

                    if [[ "$PIC" =~ [[:digit:]]{8}_.*$ ]] || [[ "$PIC" =~ IMG_[[:digit:]]{8}_.*$] ]] || [[ "$PIC" =~ P_[[:digit:]]{8}_.*$] ]]; then
                    :
                    else
                    # this will be done             
                    filename=$(basename "$PIC")
                    echo "$filename"
                    echo "mv -i \""$PIC"\" \""$(dirname "$PIC")"/"$DATEMOD2B""$filename"\""
                    #uncomment if you like it
                    mv -i "$PIC" "$(dirname "$PIC")/$DATEMOD2B$filename"
                    fi

                else
                    # get the date and time from the tag tag filemodifydate

                    DATE=$(exiftool -p '$filemodifydate' "$PIC" | sed 's/[: ]//g')
                    LONGDATE=$(echo $DATE | sed -e 's/^\(.\{12\}\).*//')

                    # check if filemodifydate is 0000... or  empty
                    if [[ "$LONGDATE" != "000000000000" ]] && [[ -n "$LONGDATE" ]]; then
                    #echo "filemodifydatetag_$LONGDATE"

                    #touch -t $LONGDATE "$PIC"
                    DATEMOD2C=$(echo $DATE | sed -e 's/^\(.\{8\}\).*/_/')
                    echo "datemod2C_$DATEMOD2C"

                        if [[ "$PIC" =~ [[:digit:]]{8}_.*$ ]] || [[ "$PIC" =~ IMG_[[:digit:]]{8}_.*$] ]] || [[ "$PIC" =~ P_[[:digit:]]{8}_.*$] ]]; then
                        :
                        else
                        # this will be done             
                        filename=$(basename "$PIC")
                        echo "$filename"
                        echo "mv -i \""$PIC"\" \""$(dirname "$PIC")"/"$DATEMOD2C""$filename"\""
                        #uncomment if you like it
                        mv -i "$PIC" "$(dirname "$PIC")/$DATEMOD2C$filename"
                        fi

                    else

                    echo "Error, NO date available"
                    fi
                fi
            fi
fi
done
    
por Ferroao 13.12.2017 / 02:24