如何在 iPhone 中使用 ffmpeg 代码
我需要将视频转换为 png 图像。我使用 ffmepg 做到了这一点。但我需要尽快做到这一点。现在将视频转换为图像需要花费大量时间。现在减少转换时间。我搜索了很多但我得到了“ffmpeg -i video.mpg image%d.jpg”这些编码作为解决方案。请教我使用这些类型的编码。
I need to convert the video into png images. I did that using ffmepg. But I need to do that quickly. Now it's taking lots of time to convert a video into images. Now to reduce the conversion time. I search lot But I got "ffmpeg -i video.mpg image%d.jpg" these codings as solution. Please teach me to use these kind of codings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该比 ffmpeg 更快,因为步骤 2 是硬件加速的,并且还有一个好处是允许您放弃繁琐的 LPGLed 3rd 方库。
享受!
This should be faster than ffmpeg because step 2 is hardware accelerated and also has the benefit of allowing you to discard a cumbersome LPGLed 3rd party library.
Enjoy!
使用 ffmpeg,您可以逐帧分割视频,可以将音频与视频混合,还可以检查 这个
with ffmpeg you can split video frame by frame and can mix audio with video and also check this