例:

例:

FTPサイトにアップロードすると、元のファイル作成日がなくなったようですが、アップロード日が出ます。ただし、ファイルのExifデータは正確です。 Exif日付の作成日を一括変更するためのツールはありますか?

ベストアンサー1

EXIF処理ツールexiv2これには組み込みオプションがあります。

exiv2 -T rename image.jpg

最後のファイル変更時刻を mtimeEXIFメタデータに保存された日付に設定します。

作成時間を使用するように要求しましたが、これはUnixシリーズシステムでは使用されません。正当な理由で

私はあなたが創造時間と呼ぶ時間が実際にその時間であると確信していますmtime。問題ありません。

~からman exiv2:

NAME
  exiv2 - Image metadata manipulation tool

SYNOPSIS
  exiv2 [options] [action] file ...

DESCRIPTION
  exiv2 is a program to read and write Exif, IPTC and XMP image metadata and image com‐
  ments. The following image formats are supported:

[ ... ]

mv | rename
 Rename files and/or set file timestamps according to the Exif create time‐
 stamp.  Uses  the  value  of  tag  Exif.Photo.DateTimeOriginal  or, if not
 present, Exif.Image.DateTime to determine the timestamp. The filename for‐
 mat can be set with -r fmt, timestamp options are -t and -T.

[ ... ]

-T  Only  set  the  file  timestamp according to the Exif create timestamp, do not
    rename the file (overrides -k). This option is only  used  with  the  'rename'
    action.  Note:  On Windows you may have to set the TZ environment variable for
    this option to work correctly.

-t反対の操作を行うには、オプションを参照してください。

おすすめ記事