Relative Content

Tag Archive for c++ffmpeglibav

Using libav libraries directly in c++ project instead of using Ffmpeg command external process

i’m receiving input as raw H264 NAL units contiguously from one port and mp2 audio from the another port .i need to multiplex this both and encode as a mpeg2 transport stream. To achieve this now i’m executing required ffmpeg command as a process inside my c++ project and i get the output perfectly. but, the problem is i can’t install ffmpeg in client system manually and i felt just for this single purpose using ffmpeg takes more cpu utilization also and handling external process also bit not reliable.