作者注
我不再使用这个项目或为其提供任何支持,如果你想维护它,请在这里联系我:[email protected]。
这个项目是4年前创建的,现在可能有更好的方法将视频变成GIF,使用google!
/作者注
将任何视频文件转换为优化的动画 GIF。可以是完整的长度,也可以是其中的一部分。
该截屏视频是用 lolilolicon/FFcast 录制的,然后转换为 GIF:
gifify screencast.mkv -o screencast.gif --resize 800:-1
stdin
和stdout
使用gifify之前,请安装:
$ brew install node
)$ brew install ffmpeg
)$ brew install imagemagick
)$ brew install giflossy
)您还可以使用安装的所有内容附带的 gifify Docker 映像。
npm install -g gifify
> gifify -h
Usage: gifify [options] [file]
Options:
-h, --help output usage information
-V, --version output the version number
--colors < n > Number of colors, up to 255, defaults to 80
--compress < n > Compression (quality) level, from 0 (no compression) to 100, defaults to 40
--from < position > Start position, hh:mm:ss or seconds, defaults to 0
--fps < n > Frames Per Second, defaults to 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
--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
请参阅示例。
var fs = require ( 'fs' ) ;
var gifify = require ( 'gifify' ) ;
var path = require ( 'path' ) ;
var input = path . join ( __dirname , 'movie.mp4' ) ;
var output = path . join ( __dirname , 'movie.gif' ) ;
var gif = fs . createWriteStream ( output ) ;
var options = {
resize : '200:-1' ,
from : 30 ,
to : 35
} ;
gifify ( input , options ) . pipe ( gif ) ;
您还可以将可读流传递给gifify(stream, opts)
。
Gifify 支持命令行 ( cat movie.mp4 | gifify -o out.gif
) 和编程 API ( gifify(readableStream, opts).pipe(writableStream)
)中的流。
虽然它在某些情况下非常有用,但如果磁盘上已有该文件,则最好执行gifify movie.mp4 -o out.gif
或gifify(filePath, opts).pipe(writableStream)
。
为什么?因为当您想要从 40:20 剪切到 40:22 时,管道传输 3.4GB 仍然需要花费大量时间,并且不会给您带来任何性能优势。
FFmpeg 必须从 0GB -> $START_BYTE_40:20 读取并丢弃它。但一切都在你的记忆中流动。
当使用从命令行直接输入文件时,我们将-i filename
选项传递给 FFmpeg,然后速度超级快!
|piping
时要小心。
您可以将一些简单的文本刻录到 GIF 中:
gifify back.mp4 -o back.gif --from 01:48:23.200 --to 01:48:25.300 --text " What?..What?What? "
结果:
您可以将字幕刻录到 GIF 中,就这么简单:
gifify 22.mkv -o movie.gif --subtitles 22.ass --from 1995 --to 2002 --resize 600:-1
您必须创建新的字幕文件,整部电影的时间码对于 5 秒的 GIF 不起作用。
使用 aegisub 创建字幕并增大字体大小以获得出色的效果!
这是上一个命令中使用 aegisub 创建的22.ass
:
[Script Info]
; Script generated by Aegisub 3.2.1
; http://www.aegisub.org/
Title: Default Aegisub file
ScriptType: v4.00+
WrapStyle: 0
ScaledBorderAndShadow: yes
YCbCr Matrix: None
[Aegisub Project Garbage]
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: Default,Arial,20,&H00FFFFFF,&H000000FF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,2,2,2,10,10,10,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:00:02.50,0:00:03.97,Default,,0,0,0,,{fnLiberation Sansfs40}Okay, okay.
Dialogue: 0,0:00:05.00,0:00:06.90,Default,,0,0,0,,{fnLiberation Sansfs40}Okay. Okay.
从 22 Jump Street 提取 GIF 的结果:
On modern hardware GIF is the slowest and most expensive video codec. Can we please allow it to be obsoleted?
https://pornel.net/efficient-gifs#sec44
哟洛!
Giflossy 是 gifsicle 的一个分支,gifsicle 作者目前正在致力于将有损部分集成到 gifsicle 中。
所以很快我们就可以直接使用 gifsicle 和 gifiscle 包了。
jclem/gifify 是一个很好的灵感来源。