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

2分以内にQiita記事に貼り付けるgif画像を作る方法

Posted at

流れ

1、収録する(所要時間1分)
2、.movを.gifに変換する(所要時間1分)

#1,収録する。
1,Shift+Command+5(条件:macOS 10.14 Mojave 以上)を同時に押して画面収録を開始する。それ以外の場合はQuick Time Playerを立ち上げる。
有名なスクショのコマンドはShift+Command+3or4(3だと普通に4だと選択範囲)。
macOS 10.14 Mojave以上ではShift+Command+5のショートカットが追加されています。
こんな感じのがでるので、
スクリーンショット 2020-08-31 22.23.03.png

これを選択すると、
スクリーンショット 2020-08-31 22.23.47.png

上の画像の「取り込む」のところが**「収録」**に変わるので、
スクリーンショット 2020-08-31 22.24.57.png
**「収録」**を押して撮影開始します。
停止すると.movファイルができます。

#2、.movを.gifに変換する
.movはそのままだとQiitaに載せられないので、.gifに変換します。

# homebrewでインストール
brew install ffmpeg

# 変換する
ffmpeg -i hoge.mov fuga.gif

# (応用) 動きを滑らかにしたい場合、rオプションでフレームレートをあげる(1秒あたりのコマ数)
ffmpeg -i hoge.mov -r 10 fuga.gif

完了するとgifが作成されこんな感じで貼れます。
load2.gif

補足

FFmpegは無料で使用することのできる動画、および音声のエンコーダです。
LinuxでもWindowsでもMacでも使用することが可能です。
公式サイト:
https://www.ffmpeg.org/download.html

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