ffmpeg/doc/examples
Muhammad Faiz 327a1c0dee examples: do not use AVFrame accessor
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2017-04-23 14:43:51 +07: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 Merge commit 'fee0f1de2c6a9924acb74013436dbea8f2bd1ecb' 2017-04-04 11:40:34 +02:00
decode_video.c doc/examples/decode_video: Fix format string vulnerability 2017-04-09 03:51:19 +02:00
demuxing_decoding.c doc/examples/demuxing_decoding: Drop AVFrame->pts use 2016-10-18 15:15:12 +02:00
encode_audio.c Merge commit 'f27e262dbdea1991b22e08b639ac03e642a3482c' 2017-04-03 21:14:16 +02:00
encode_video.c Merge commit '59ab9e8ba1df7e3347a4cd2bd56c32e74aede802' 2017-04-04 11:48:23 +02:00
extract_mvs.c doc/examples/extract_mvs: re-indent after previous commit 2017-04-04 14:10:22 +02:00
filter_audio.c
filtering_audio.c examples: do not use AVFrame accessor 2017-04-23 14:43:51 +07:00
filtering_video.c examples: do not use AVFrame accessor 2017-04-23 14:43:51 +07:00
http_multiclient.c doc/examples/http_multiclient: Fix resource leak 2016-12-26 18:29:00 +01:00
metadata.c
muxing.c doc/examples/muxing: re-indent block 2017-03-28 12:41:46 +02:00
qsvdec.c examples/qsvdec: convert to the new decoding API 2016-11-23 13:08:43 +01:00
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 doc/examples/transcode_aac: replace local get_error_text with av_err2str 2017-04-01 12:45:33 +02:00
transcoding.c examples: do not use AVFrame accessor 2017-04-23 14:43:51 +07: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.