artarch
Works Posts Make Category Tags About

exif 編集 tips

Published Nov 11, 2022 by Ato Araki in Computer, 備忘録 at https://blog.artarch.net/notes/linux/exif-edit/

Table of Contents

  • GPS の情報を削除する

exif をスクリプトで編集する

使うツール exif

ubuntu:

$ sudo apt install exif

GPS の情報を削除する

$ exif --remove --ifd GPS --output IMG_001.jpg IMG_001.jpg

応用: ディレクトリツリーにある jpg|jpeg のファイルから GPS の情報を削除する

$ find . -type f -iregex '.*\.jpe?g' | xargs -n 1 --replace=File bash -c "echo File; exif --ifd GPS -x File | (! grep -v exif) || exif --remove --ifd GPS --output File File" 

See Also

  • Thinkpad X220
  • ubuntu jammy note
  • ubuntu focal note
  • 証明書関連tips
  • PCを自動起動するの巻
  • debian stretch GDM (gnome) 設定メモ

LastModified: 2022-11-11T13:30:00Z

© 2023 Ato Araki