4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

記事投稿キャンペーン 「2024年!初アウトプットをしよう」

ミラーレスカメラで撮影したjpgがGooglePhotosで「元の画質」のまま「保存容量の節約画質」に圧縮/変換されない事象への対応

Last updated at Posted at 2024-01-10

これはなに

Sonyのα6400で撮影した写真をGooglePhotosにアップロードすると「元の画質」となり、「既存の写真と動画を保存容量の節約画質に変換」しても「保存容量の節約画質」に圧縮されないのでその対応方法のメモ。

原因

状況によっては、一部の写真や動画が圧縮されずに、元のファイルサイズのまま保存されることがあります。一部のマルチピクチャ形式(mpf)の .jpg ファイルは圧縮できません。

exifからMPF関連のタグを削除すれば良いらしく、実際削除してからアップロードすると「保存容量の節約画質」で保存された。

exif削除

exiftoolをインストール

exifからMPFタグを削除するコマンド

exiftool -overwrite_original_in_place -mpf:all= ./*.JPG

ショートカット作成

sudo vi /usr/local/bin/removeMpf
/* ↑のコマンドを書き込んで */
sudo chmod 755 /usr/local/bin/removeMpf

実行

cd /tmp/jpg/
removeMpf

参考にさせていただいた記事

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?