0
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?

More than 3 years have passed since last update.

【macのみ】HEICファイルをjpgにコマンドで変換

Posted at

出力のoutdirは別に作成しておく

for f in *.HEIC; do sips --setProperty format jpeg $f --out ./outdir/`basename -s .HEIC $f`.jpg ; done

ffmpegを利用可能にするのに手間取ったのと、基本コマンドで流用可能な内容を記載

参考

https://qiita.com/1coin178/items/83098b1be474db3e8bda
https://qiita.com/3attoC/items/ee75825be2b22c57bc41

0
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
0
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?