ffmpeg/doc/examples
Michael Niedermayer 0c79c96cf2 doc/examples/muxing: Add support to pass flags to muxer as since codecpar the codec flags are not available to the muxer anymore
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-04-11 17:57:06 +02:00
..
Makefile
README
avio_dir_cmd.c
avio_reading.c
decoding_encoding.c
demuxing_decoding.c
extract_mvs.c
filter_audio.c
filtering_audio.c fix some a/an typos 2016-03-28 14:13:17 -08:00
filtering_video.c
http_multiclient.c
metadata.c
muxing.c doc/examples/muxing: Add support to pass flags to muxer as since codecpar the codec flags are not available to the muxer anymore 2016-04-11 17:57:06 +02:00
qsvdec.c
remuxing.c
resampling_audio.c
scaling_video.c
transcode_aac.c Merge commit 'ac6d53589f3631ae08467c784fb371a15c957f01' 2016-04-11 14:15:28 +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.