0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Mac】GifskiでMOVをGIFに変換する

Last updated at Posted at 2025-04-02

Gifskiをインストール

以下のコマンドでGifskiをインストールできます。

brew install gifski

MOVをGIFに変換

以下のコマンドでGifskiを使用してMOVをGIFに変換できます。

gifski --fps 10 --width 320 -o output.gif input.mov

ffmpegを併用する

ffmpegをインストールします。

brew install ffmpeg

ffmpegを併用する場合には以下のように実行します。

ffmpeg -i input.mov -progress pipe:2 -nostats -hide_banner -stats_period 0.1 -fpsmax 20 -f yuv4mpegpipe - | gifski -o output.gif --width 800 --fps 20 --quality 90 -

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?