linux run ffmpeg within c++ code

1.8k Views Asked by At

the O.S. is Linux. I have an old c++ code that writes raw SDI input from a capture device to a file. My intent is to modify this program and redirect the raw video from the SDI source to the stdin of ffmpeg. How can I do that? Is better to run ffmpeg within the c++ source code (how can I do that?)? Thank you very much.

2

There are 2 best solutions below

3
On

Open a pipe, start mencoder and configure it to read from the pipe. Then write data to the pipe.

If you want to use a library, write a code (etc), then take a look into libav

0
On

I use a C++ wrapper around FFMpeg called FOBS

my2c