有人有 ffmpeg 图像转视频脚本吗?

发布于 2024-12-05 04:36:17 字数 289 浏览 4 评论 0原文

我想拍摄一堆图像并用它们制作视频幻灯片。会有一个应用程序可以做到这一点,对吗?是的,看起来不少。问题是我希望幻灯片与一段音乐同步,而我见过的所有应用程序只允许您显示每张幻灯片整秒的倍数。我希望它们显示 1.714285714 秒的倍数以适合 140 bpm。

我见过的工具通常似乎都有 ffmpeg,所以大概这种事情可以用脚本来完成。但是 ffmpeg 有太多的选择......我希望有人能有一些接近的东西。

我最多会有大约 100 张幻灯片,其中必须显示 3.428571428 秒的幻灯片,或者我想我可以简单地显示两次的幻灯片。

I'm wanting to take a bunch of images and make a video slideshow out of them. There'll be an app for that, right? Yup, quite a few it seems. The problem is I want the slides synced to a piece of music, and all the apps I've seen only allow you to show each slide for a multiple of a whole second. I want them to show for multiples of 1.714285714 seconds to fit with 140 bpm.

The tools I've seen generally seem to have ffmpeg under the hood, so presumably this kind of thing could be done with a script. But ffmpeg has sooo many options...I'm hoping someone will have something close.

I'll have up to about 100 slides, the ones that have to show for 3.428571428 secs or whatever I guess I can simply show twice.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

毁我热情 2024-12-12 04:36:18

对于 ffmpeg 的最新版本(大约从 2013 年底开始),

以下内容将从中的所有 png 图像创建视频幻灯片(使用视频编解码器 libx264webm)当前目录。该命令接受按系列编号和排序的图像名称(img001.jpgimg002.jpgimg003.jpg以及随机的图像组。

(每个图像的持续时间为 5 秒

ffmpeg -r 1/5 -pattern_type glob -i '*.png' -c:v libx264 out.mp4   # x264 video
ffmpeg -r 1/5 -pattern_type glob -i '*.png'              out.webm  # WebM video

对于旧版本的 ffmpeg

这将创建一个视频幻灯片(使用视频编解码器) libx264webm)来自一系列 png 图像,名为 img001.pngimg002.pngimg003.png,...

(每个图像的持续时间为 5 秒

ffmpeg -f image2 -r 1/5 -i img%03d.png -vcodec libx264 out.mp4     # x264 video
ffmpeg -f image2 -r 1/5 -i img%03d.png                 out.webm    # WebM video

如果您有最新版本的 ffmpeg,您可能需要稍微修改以下命令

这将创建一个幻灯片其中每个图像的持续时间为15秒

ffmpeg -f image2 -r 1/15 -i img%03d.png out.webm

如果您想仅使用一张图像创建视频,则可以这样做(输出视频持续时间设置为30秒):

ffmpeg -loop 1 -f image2 -i img.png -t 30 out.webm

如果您没有按系列编号和排序的图像(img001.jpgimg002.jpgimg003.jpg >)而是随机的一堆图像,你可以尝试这个:

cat *.jpg | ffmpeg -f image2pipe -r 1 -vcodec mjpeg -i - out.webm

或者对于 png 图像:

cat *.png | ffmpeg -f image2pipe -r 1 -vcodec png -i - out.webm

这将读取当前目录中的所有 jpg/png 图像,并使用管道将它们一张一张地写入 ffmpeg 的输入,这将产生视频。

重要提示:系列中的所有图像必须具有相同的尺寸(x 和 y 尺寸)和格式。

说明:通过告诉 FFmpeg 将输入文件的 FPS 选项(每秒帧数)设置为某个非常低的值,我们使 FFmpeg 在输出处重复帧,从而实现在屏幕。您已经看到,您可以将任何分数设置为帧速率。 每分钟 140 次即为 -r 140/60。

来源:FFmpeg wiki


用于从视频创建图像,

ffmpeg -i video.mp4 img%03d.png

这将创建名为 img001.png 的图像, img002.pngimg003.png、...

For very recent versions of ffmpeg (roughly from the end of year 2013)

The following will create a video slideshow (using video codec libx264 or webm) from all the png images in the current directory. The command accepts image names numbered and ordered in series (img001.jpg, img002.jpg, img003.jpg) as well as random bunch of images.

(each image will have a duration of 5 seconds)

ffmpeg -r 1/5 -pattern_type glob -i '*.png' -c:v libx264 out.mp4   # x264 video
ffmpeg -r 1/5 -pattern_type glob -i '*.png'              out.webm  # WebM video

For older versions of ffmpeg

This will create a video slideshow (using video codec libx264 or webm) from series of png images, named img001.png, img002.png, img003.png, …

(each image will have a duration of 5 seconds)

ffmpeg -f image2 -r 1/5 -i img%03d.png -vcodec libx264 out.mp4     # x264 video
ffmpeg -f image2 -r 1/5 -i img%03d.png                 out.webm    # WebM video

You may have to slightly modify the following commands if you have a very recent version of ffmpeg

This will create a slideshow in which each image has a duration of 15 seconds:

ffmpeg -f image2 -r 1/15 -i img%03d.png out.webm

If you want to create a video out of just one image, this will do (output video duration is set to 30 seconds):

ffmpeg -loop 1 -f image2 -i img.png -t 30 out.webm

If you don't have images numbered and ordered in series (img001.jpg, img002.jpg, img003.jpg) but rather random bunch of images, you might try this:

cat *.jpg | ffmpeg -f image2pipe -r 1 -vcodec mjpeg -i - out.webm

or for png images:

cat *.png | ffmpeg -f image2pipe -r 1 -vcodec png -i - out.webm

That will read all the jpg/png images in the current directory and write them, one by one, using the pipe, to the ffmpeg's input, which will produce the video out of it.

Important: All images in a series need to be of the same size (x and y dimensions) and format.

Explanation: By telling FFmpeg to set the input file's FPS option (frames per second) to some very low value, we made FFmpeg duplicate frames at the output and thus we achieved to display each image for some time on screen. You have seen, that you can set any fraction as framerate. 140 beats per minute would be -r 140/60.

Source: The FFmpeg wiki


For creating images from a video use

ffmpeg -i video.mp4 img%03d.png

This will create images named img001.png, img002.png, img003.png, …

蘑菇王子 2024-12-12 04:36:18

您可以从视频中提取图像,或从多个视频中创建视频
图片:

从视频中提取图像:

ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg

这将从视频中每秒提取一个视频帧,并将
将它们输出到名为“foo-001.jpeg”、“foo-002.jpeg”等的文件中。
将重新调整以适应新的宽x高值。如果你想提取
只是有限数量的帧,您可以使用上面的命令
与 -vframes 或 -t 选项组合,或与 -ss 组合
从某个时间点开始提取。用于创建视频
来自许多图像:

ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

语法foo-%03d.jpeg指定使用由十进制数字组成的
用零填充的三位数字来表示序列号。它
与 C printf 函数支持的语法相同,但仅
接受普通整数的格式是合适的。

这是文档的摘录,有关更多信息,请查看 ffmpeg 的文档页面。

You can extract images from a video, or create a video from many
images:

For extracting images from a video:

ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg

This will extract one video frame per second from the video and will
output them in files named 'foo-001.jpeg', 'foo-002.jpeg', etc. Images
will be rescaled to fit the new WxH values. If you want to extract
just a limited number of frames, you can use the above command in
combination with the -vframes or -t option, or in combination with -ss
to start extracting from a certain point in time. For creating a video
from many images:

ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

The syntax foo-%03d.jpeg specifies to use a decimal number composed
of three digits padded with zeroes to express the sequence number. It
is the same syntax supported by the C printf function, but only
formats accepting a normal integer are suitable.

This is an excerpt from the documentation, for more info check on the documentation page of ffmpeg.

阪姬 2024-12-12 04:36:18

我最终使用了这个:

mencoder "mf://html/*.png" -ovc x264 -mf  fps=1.16666667  -o output.avi

然后在 LiVES 中更改了采样率。

加载更多详细信息(以及最终结果视频):http://hyperdata.org/hackit/ (镜像)

I wound up using this:

mencoder "mf://html/*.png" -ovc x264 -mf  fps=1.16666667  -o output.avi

and changing the sample rate afterwards in LiVES.

a load more details (and the end result video) at: http://hyperdata.org/hackit/ (mirror)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文