LoginSignup
0
0

More than 1 year has passed since last update.

コマンドでサクッと動画からgifを作成

Posted at

準備

ターミナルで以下のコマンドを実行していきます

適当なフォルダを作成して、その中に動画を入れます。

|フォルダ1
    |_ 動画

動画を画像に変換

ffmpeg -i ファイル名.拡張子 -an -r 10 %04d.png

この際大量に画像が作成されるため、フォルダを作成してからその中で実行した方がいいです。

画像サイズ変更

40%のところをいじって、リサイズしてみてください

convert *.png -resize 40% output_%04d.png

gifを作成

convert output_*.png ファイル名.gif

以上

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