0

I have around 50 video clips that I need to make into gifs. I'm aware of the process to make a gif using photoshop. I was wondering if there was a way to automate this so I don't have to spend too much time doing it.

4

3 回答 3

0

如果你有 linux 或 cygwin,你可以使用 ImageMagick。

convert -quiet -delay 1 plane.avi plane.gif

http://www.imagemagick.org/Usage/video/

在我的脑海中,您可以将其作为一个 shell 脚本来执行目录中的所有 50 个操作:

for file in *.avi; do
  convert -quiet -delay 1 "$file" $(basename "$file" ".avi").gif
done
于 2013-08-20T16:52:42.933 回答
0

如果您喜欢以编程方式执行此操作,您可以通过将 url 添加到视频中来使用http://gifserver.levy.sehttp://gifserver.levy.se?video=urlTovideo.mp4&format=json

您可以在https://github.com/marlev/gifserver从 github 签出源代码

于 2014-10-26T22:39:00.217 回答
0

您可以通过在 Photoshop 中创建动作来做到这一点。打开一个剪辑,创建新动作并记录您正在做的事情。然后打开所有剪辑并按播放。尚未尝试使用剪辑,但这是自动方式。其他方式,有些网站可以将剪辑转换为 gif。两者都需要相同的时间,但有些网站对此准备得更充分。

于 2013-08-20T16:43:59.120 回答