LoginSignup
2
1

More than 3 years have passed since last update.

Mac・Windowsで.mp4や.movを.gifに変換する

Posted at

FFmpegという動画と音声を記録・変換・再生するためのフリーソフト使用して簡単にできます。
FFmpegはMac・Windows共に使えるソフトなのでWindowsでも可能です。

brewを使ってインストールします。

install.console
brew install ffmpeg

変換したい場合

templete.console
ffmpeg 入力オプション -i 入力ファイル名 出力オプション 出力ファイル名

入力ファイル: test.mp4
出力ファイル: test.gif

ex.console
ffmpeg -i test.mp4 -r 24 test.gif

これで完了です!

2
1
1

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
2
1