如何在Delphi中使用FFMPEG
我是delphi的初学者。我创建了一个示例应用程序,我需要一个帮助。如何在delphi内部使用FFMPEG?
Iam beginner in delphi.i create the one sample application i need one help.how to use FFMPEG in inside the delphi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FFMPEG 是一个命令行应用程序,因此您可以使用 ShellExecute() 轻松调用它,并提供一些示例此处。
但是,首先您需要决定使用哪些命令行开关。
如果您需要进一步的帮助,我明天可以发布代码。
编辑:
这是运行命令行应用程序的更高级方法:它将输出重定向到备忘录以供查看:
可以像这样调用它:
FFMPEG is a command line app, so you can easily call it using
ShellExecute()
, with some examples here.First, however, you need to decide what command line switches to use.
I can post code tomorrow if you need further help.
EDIT:
Here is a more advanced method to run a command line application: It redirects the output to a memo for viewing:
It can be called like so:
这是FFmpeg for Delphi的封装库。
http://www.delphiffmpeg.com/
您可以阅读文档并尝试构建示例。
Here is the encapsulated library of FFmpeg for Delphi.
http://www.delphiffmpeg.com/
You may read the documents and try to build the examples.