Iam beginner in delphi.i create the one sample application i need one help.how to use FFMPEG in inside the delphi?
相关问题
- Is there a Delphi 5 component that can handle .png
- Is there a way to install Delphi 2010 on Windows 2
- Is TWebBrowser dependant on IE version?
- iOS objective-c object: When to use release and wh
- DBGrid - How to set an individual background color
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- Best way to implement MVVM bindings (View <-> V
- Windows EventLog: How fast are operations with it?
- How to force Delphi compiler to display all hints
- Coloring cell background on firemonkey stringgrid
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
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:
Here is the encapsulated library of FFmpeg for Delphi.
http://www.delphiffmpeg.com/
You may read the documents and try to build the examples.