Andreas Cadhalpun 9cc1d21e76 doc/examples: fix lib math dep for decoding_encoding 9 лет назад
..
Makefile 9cc1d21e76 doc/examples: fix lib math dep for decoding_encoding 9 лет назад
README a12bf9f50f doc/examples/README: fix typo 11 лет назад
avio_reading.c 419800acc4 examples/avio_reading: fix null dereference on error 10 лет назад
decoding_encoding.c 88f2586adb fix various typos 10 лет назад
demuxing_decoding.c 84bccae8e9 doc: fix typo 10 лет назад
extract_mvs.c b0352b1997 avcodec: export motion vectors in frame side data on demand 10 лет назад
filter_audio.c f1d6fc7794 Merge commit '6a928293dd29c7f0dcf09107980a1d651c9957df' 10 лет назад
filtering_audio.c 341639fe80 doc/examples: remove pathes from doxy examples 10 лет назад
filtering_video.c 341639fe80 doc/examples: remove pathes from doxy examples 10 лет назад
metadata.c 341639fe80 doc/examples: remove pathes from doxy examples 10 лет назад
muxing.c f285056810 doc/examples/muxing: fix "-flags" option 10 лет назад
remuxing.c 8fb4dba89d doc/examples/remuxing: dont use the input codec_tag, it may be invalid tor the output 10 лет назад
resampling_audio.c c16e80ee3d doc/examples: remove unneeded NULL checks 10 лет назад
scaling_video.c c16e80ee3d doc/examples: remove unneeded NULL checks 10 лет назад
transcode_aac.c 9f02a2b224 transcode_aac: fix const return value 10 лет назад
transcoding.c fd72ff6f31 doc/examples/transcoding: check encoder before using it 9 лет назад

README

FFmpeg examples README
----------------------

Both following use cases rely on pkg-config and make, thus make sure
that you have them installed and working on your system.


Method 1: build the installed examples in a generic read/write user directory

Copy to a read/write user directory and just use "make", it will link
to the libraries on your system, assuming the PKG_CONFIG_PATH is
correctly configured.

Method 2: build the examples in-tree

Assuming you are in the source FFmpeg checkout directory, you need to build
FFmpeg (no need to make install in any prefix). Then just run "make examples".
This will build the examples using the FFmpeg build system. You can clean those
examples using "make examplesclean"

If you want to try the dedicated Makefile examples (to emulate the first
method), go into doc/examples and run a command such as
PKG_CONFIG_PATH=pc-uninstalled make.