web-dev-qa-db-ja.com

EXIF画像データで画像を整理/分類する方法

失われたパーティションからイメージを回復したので、各イメージのEXIFデータの作成日までにそれらをソートするか、フォルダーに入れる必要があります。

DigiKamとShotwellをインストールしましたが、どのオプションでもこれを行う方法が見つかりませんでした。

これらのプログラムのいずれかまたは他の方法でそれを行う方法を誰かが私に説明できますか?

私のお気に入りの解決策は、ファイルの日付をexif写真の日付と同じに設定することです。これを行うと、ファイルエクスプローラーツールを使用してファイルを並べ替えることができます。

  1. インストール jheadapt-get install jhead
  2. 写真ディレクトリに移動し、このコマンドjhead -ft *を実行します。これにより、ファイルシステムのファイルの日付がexifメタデータの作成日で設定されます
  3. ここで、トップメニューに移動し(Ubuntuでは、モニター画面の上部をマウスで最も頻繁に移動します)、[表示]→[画像の並べ替え]→[日付順]を選択します。
9
neves

exiftool を使用することをお勧めします。でインストールできます

Sudo apt install exiftool

次に、YYYYMMDD形式の作成日に基づいてファイルの名前を変更し、末尾にシーケンス番号を追加するサンプルコマンドを示します。

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

そして、image.jpgを、作成日を名前として 'YYYY-MM-DD'形式のディレクトリに移動するサンプルコマンドです。

exiftool -d %Y-%m-%d "-directory<datetimeoriginal" image.jpg

ドキュメントにはさらにサンプルコマンドがあります。 https://sno.phy.queensu.ca/~phil/exiftool/filename.html

6
Scott

素晴らしいツールは Rapid Photo Downloader です

  1. PPAを追加する

    Sudo apt-add-repository ppa:dlynch3/ppa
    
  2. 更新とインストール

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

入力ソースとして「失われたパーティション」を使用し、Rapid Photo Downloaderのexifデータに基づいてターゲットパス/ファイル名を設定します

1
A.B.

最も簡単な使用法:jhead -n%Y/%m/%d/%Y%m%d%H%M /Destination/*.jpg

すべてのJPGを現在のディレクトリから並べ替え、移動し、一意のファイル名/Year/Month/Day/YearMonthDayHourMinute.jpgを持つNiceディレクトリ構造に名前を変更します

RAWではなく、*。jpgファイルでのみ機能します。

1

Phatch Photoバッチプロセッサをインストールします。事前定義されたアクションから、exifの日付でファイルの名前を変更するアクションを選択します。

1
galymax

これは私が使用しているコードです。 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\}\).*/\1_/')
        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\}\).*/\1_/')
            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

https://www.tuxradar.com/answers/4 に基づいて、 https://mikebeach.org/2011/12/17/how-to-retrieve-exif-data -ubuntu-linux /のコマンドラインから=

http://davehope.co.uk/Blog/sorting-your-photos-with-bash/ も参照してください。

編集。この変更では、タグ内の日付が名前と日付属性にタッチで渡されます。また、これらのタグが存在しない場合、変更タグの日付がファイルの名前に渡されます。

#! /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\}\).*/\1/')
            # 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\}\).*/\1_/')
            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\}\).*/\1/')

            # 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\}\).*/\1_/')
                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\}\).*/\1/')

                    # 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\}\).*/\1_/')
                    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
0
Ferroao