FFmpeg: building example C codes

前端 未结 2 1954
长发绾君心
长发绾君心 2021-01-20 19:14

I have configured and compiled the FFmpeg library using this link: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

Now, I am trying to build example C codes pro

2条回答
  •  醉话见心
    2021-01-20 19:21

    Run ./configure && make -j4 examples in the FFmpeg source directory, then look in doc/examples for the compiled examples.

    • Requires make and pkg-config.

    • To remove the compiled examples use make examplesclean in the FFmpeg source directory.

提交回复
热议问题