ffmpeg/doc/examples
Stephan Holljes 25410c524d doc/example: Add http multi-client example code
Signed-off-by: Stephan Holljes <klaxa1337@googlemail.com>
2015-08-01 00:58:32 +02:00
..
Makefile doc/example: Add http multi-client example code 2015-08-01 00:58:32 +02:00
README
avio_list_dir.c examples/avio_list_dir: init/deinit network 2015-04-06 15:50:26 +02:00
avio_reading.c
decoding_encoding.c Merge commit '059a934806d61f7af9ab3fd9f74994b838ea5eba' 2015-07-27 23:15:19 +02:00
demuxing_decoding.c examples/demuxing_decoding: use properties from frame instead of video_dec_ctx 2015-06-15 18:32:18 +02:00
extract_mvs.c avcodec: export motion vectors in frame side data on demand 2014-08-18 14:13:57 +02:00
filter_audio.c Merge commit '6a928293dd29c7f0dcf09107980a1d651c9957df' 2014-08-03 19:18:25 +02:00
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
http_multiclient.c doc/example: Add http multi-client example code 2015-08-01 00:58:32 +02:00
metadata.c
muxing.c Merge commit 'def97856de6021965db86c25a732d78689bd6bb0' 2015-07-27 22:50:18 +02:00
qsvdec.c lavc: Consistently prefix input buffer defines 2015-07-27 15:24:59 +01:00
remuxing.c Merge commit '7c6eb0a1b7bf1aac7f033a7ec6d8cacc3b5c2615' 2015-07-27 22:10:35 +02:00
resampling_audio.c doc/examples: remove unneeded NULL checks 2014-09-14 16:45:50 +02:00
scaling_video.c doc/examples: remove unneeded NULL checks 2014-09-14 16:45:50 +02:00
transcode_aac.c Merge commit '7c6eb0a1b7bf1aac7f033a7ec6d8cacc3b5c2615' 2015-07-27 22:10:35 +02:00
transcoding.c Merge commit 'def97856de6021965db86c25a732d78689bd6bb0' 2015-07-27 22:50:18 +02: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.