如何在服务器端生成FLV视频?
我需要创建一个服务器端应用程序,它获取图像数组并生成带有动画幻灯片的 FLV 文件。有谁知道我可以使用什么技术来实现这一目标?我主要是在寻找一个 Linux 工具,但如果您了解任何基于 Windows 的技术,我也会感激不尽。你可以看到我正在寻找的内容 这里。谢谢!
I need to create a server-side application that takes an array of images and produces FLV file with animated slideshow. Does anybody know what technology can I use to achieve this? I'm primarily looking for a linux tool, but if you know any windows-based technology, it will be appreciated too. You can see what I'm looking for here. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据视频/音频格式的Wiki比较,可以实现图像数组到FLV的转换使用开源 FFMPEG 格式。
它提供从图像流制作视频的支持。
According to Wiki comparison of video/audio formats, you can achieve conversion of array of images to FLV format using open source FFMPEG.
It provides support to make a video from a stream of images.
您可以尝试这个。
You can try this.
我最终使用了这个工具: http://diascope.sourceforge.net/ 。它具有良好的功能,并且能够在自动化模式下使用。
I have ended up using this tool: http://diascope.sourceforge.net/ . It has good features and is capable of using in automated mode.