170429-Mac下将视频转成gif图片

MAC下将视频转成git图片

打开QuickTime

  1. 右上角文件
  • 新建屏幕录制
  • 选择是全屏录制还是范围录制
  • 录制完成后保存(mov 和 m4v都行)

准备工作

安装homebrew

MAC自带, 其他系统安装方法

安装Node.js环境

1
brew install node

方法一:ffmpeg

1
brew install ffmpeg
  1. 将视频 MP4 转化为 GIF

    1
    ffmpeg -i small.mp4 small.gif
  2. 将视频中的一部分转换为GIF

    1
    2
    // 从视频中第二秒开始,截取时长为3秒的片段转化为 gif
    ffmpeg -t 3 -ss 00:00:02 -i small.mp4 small-clip.gif
  3. 转化高质量 GIF

    1
    2
    // 默认转化是中等质量模式,若要转化出高质量的 gif,可以修改比特率
    ffmpeg -i small.mp4 -b 2048k small.gif
  4. 将 GIF 转化为 MP4

    1
    ffmpeg -f gif -i animation.gif animation.mp4
  5. 也可以将 gif 转为其他视频格式

    1
    2
    ffmpeg -f gif -i animation.gif animation.mpeg
    ffmpeg -f gif -i animation.gif animation.webm
  6. 加倍速播放视频

    1
    ffmpeg -i input.mov -filter:v "setpts=0.5*PTS" output.mov
  7. 定义帧率 16fps:

    1
    ffmpeg -i input.mov -r 16 -filter:v "setpts=0.125*PTS" -an output.mov
  8. 慢倍速播放视频

    1
    ffmpeg -i input.mov -filter:v "setpts=2.0*PTS" output.mov
  9. 静音视频(移除视频中的音频)

    1
    2
    3
    ffmpeg -i input.mov -an mute-output.mov

    -an 就是禁止音频输出
  10. 视频提取帧

    1
    2
    // 将视频提取10帧
    ffmpeg -i index.mp4 -r 10 %03d.jpg;
  11. 主要参数

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    -i——设置输入档名。
    -f——设置输出格式。
    -y——若输出文件已存在时则覆盖文件。
    -fs——超过指定的文件大小时则结束转换。
    -ss——从指定时间开始转换。
    -t从-ss时间开始转换(如-ss 00:00:01.00 -t 00:00:10.00即从00:00:01.00开始到00:00:11.00)。
    -title——设置标题。
    -timestamp——设置时间戳。
    -vsync——增减Frame使影音同步。
    视频参数
    -b:v——设置视频流量,默认为200Kbit/秒。(单位请引用下方注意事项)
    -r——设置帧率值,默认为25。
    -s——设置画面的宽与高。
    -aspect——设置画面的比例。
    -vn——不处理视频,于仅针对声音做处理时使用。
    -vcodec( -c:v )——设置视频视频编解码器,未设置时则使用与输入文件相同之编解码器。
    声音参数
    -b:a——设置每Channel(最近的SVN版为所有Channel的总合)的流量。(单位请引用下方注意事项)
    -ar——设置采样率。
    -ac——设置声音的Channel数。
    -acodec ( -c:a ) ——设置声音编解码器,未设置时与视频相同,使用与输入文件相同之编解码器。
    -an——不处理声音,于仅针对视频做处理时使用。
    -vol——设置音量大小,256为标准音量。(要设置成两倍音量时则输入512,依此类推。)

方法二:gifify

安装convert

1
brew install imagemagick

安装gifify

1
npm install -g gifify

检验是否安装成功

终端输入: gifify -h, 输入如下说明安装成功

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Usage: gifify [options] [file]

Options:
-V, --version output the version number
--colors <n> Number of colors, up to 255, defaults to 80 (default: 80)
--compress <n> Compression (quality) level, from 0 (no compression) to 100, defaults to 40 (default: 40)
--from <position> Start position, hh:mm:ss or seconds, defaults to 0
--fps <n> Frames Per Second, defaults to 10 (default: 10)
-o, --output <file> Output file, defaults to stdout
--resize <W:H> Resize output, use -1 when specifying only width or height. `350:100`, `400:-1`, `-1:200`
--reverse Reverses movie
--speed <n> Movie speed, defaults to 1 (default: 1)
--subtitles <filepath> Subtitle filepath to burn to the GIF
--text <string> Add some text at the bottom of the movie
--to <position> End position, hh:mm:ss or seconds, defaults to end of movie
--no-loop Will show every frame once without looping
-h, --help output usage information

使用方法

  1. cd 到需要转换的视频目录

  2. 执行如下代码

    1
    gifify test.m4v -o test2.gif
  3. 等待一会儿就好了

参考资料

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×