ffmpeg/doc/examples
Lukasz Marek 56b7aa2138 doc/examples: add directory listing example
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-28 03:13:44 +01:00
..
Makefile doc/examples: add directory listing example 2015-03-28 03:13:44 +01:00
README
avio_list_dir.c doc/examples: add directory listing example 2015-03-28 03:13:44 +01:00
avio_reading.c
decoding_encoding.c
demuxing_decoding.c examples/demuxing_decoding: abort decoding when width, height or pix_fmt change 2015-02-10 02:43:47 +01:00
extract_mvs.c
filter_audio.c
filtering_audio.c examples/filtering: extend comments about setting the filter graph endpoints 2015-01-29 11:12:39 +01:00
filtering_video.c examples/filtering: extend comments about setting the filter graph endpoints 2015-01-29 11:12:39 +01:00
metadata.c
muxing.c
qsvdec.c Add a QSV decoding example. 2015-02-28 21:51:24 +01:00
remuxing.c
resampling_audio.c
scaling_video.c
transcode_aac.c Merge commit '3a70c0c95feacb3844d05eebd579fc8189a77eee' 2015-01-27 13:35:31 +01:00
transcoding.c

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.