ffmpeg/doc/examples
James Almer b27dd80255 doc/decode_audio: use <> to include libav* headers
Found-by: ubitux
2017-03-31 16:50:51 -03:00
..
.gitignore Merge commit '7b1f03477f1a43d2261fbd83e50a4ad90c7f806d' 2017-03-29 14:09:09 +02:00
Makefile Merge commit '7b1f03477f1a43d2261fbd83e50a4ad90c7f806d' 2017-03-29 14:09:09 +02:00
README
avio_dir_cmd.c
avio_reading.c
decode_audio.c doc/decode_audio: use <> to include libav* headers 2017-03-31 16:50:51 -03:00
decode_video.c Merge commit '8191f960a669819db4de33a2439ded1630b8a73e' 2017-03-29 14:22:32 +02:00
demuxing_decoding.c
encode_audio.c doc/examples/encode_audio: Favor a sample rate close to 44khz instead of the maximum sample rate 2017-03-30 16:34:06 +02:00
encode_video.c Merge commit '5b4d7ac7ae5d821cfa6ab89f8eab4d31851ef32c' 2017-03-29 14:21:52 +02:00
extract_mvs.c doc/examples/extract_mvs: switch to codecpar 2017-03-28 17:46:29 +02:00
filter_audio.c
filtering_audio.c doc/examples/filtering_audio: switch to new decoding API 2017-03-30 16:20:13 +02:00
filtering_video.c doc/examples/filtering_video: switch to new decoding API 2017-03-30 16:20:07 +02:00
http_multiclient.c
metadata.c
muxing.c doc/examples/muxing: re-indent block 2017-03-28 12:41:46 +02:00
qsvdec.c
remuxing.c doc/examples/remuxing: switch to codecpar 2017-03-28 17:46:23 +02:00
resampling_audio.c
scaling_video.c
transcode_aac.c
transcoding.c doc/examples/transcoding: convert to codecpar 2017-03-28 12:27:04 -03:00

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.