Michael Niedermayer 2bd9956454 doc/examples/demuxing_decoding: Drop AVFrame->pts use 7 years ago
..
.gitignore 1a9b4bc4c7 doc/examples: build http_multiclient example 7 years ago
Makefile 767d780ec0 doc/examples: rename avio_list_dir -> avio_dir_cmd 9 years ago
README a12bf9f50f doc/examples/README: fix typo 10 years ago
avio_dir_cmd.c 767d780ec0 doc/examples: rename avio_list_dir -> avio_dir_cmd 9 years ago
avio_reading.c 419800acc4 examples/avio_reading: fix null dereference on error 10 years ago
decoding_encoding.c 8ef57a0d61 Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb' 8 years ago
demuxing_decoding.c 2bd9956454 doc/examples/demuxing_decoding: Drop AVFrame->pts use 7 years ago
extract_mvs.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 years ago
filter_audio.c f1d6fc7794 Merge commit '6a928293dd29c7f0dcf09107980a1d651c9957df' 10 years ago
filtering_audio.c 06eef96b69 fix some a/an typos 8 years ago
filtering_video.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 years ago
http_multiclient.c 7ba7b96dd3 doc/examples/http_multiclient: Fix "doc/examples/http_multiclient.c:43:9: warning: passing argument 4 of av_opt_get from incompatible pointer type" 7 years ago
metadata.c 341639fe80 doc/examples: remove pathes from doxy examples 10 years ago
muxing.c 8ef57a0d61 Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb' 8 years ago
qsvdec.c a9e1f2cc61 examples/qsvdec: convert to codecpar 8 years ago
remuxing.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 years ago
resampling_audio.c 68bca03951 doc/examples: remove unneeded NULL checks 9 years ago
scaling_video.c 68bca03951 doc/examples: remove unneeded NULL checks 9 years ago
transcode_aac.c 6bc5ef37cb Merge commit 'ac6d53589f3631ae08467c784fb371a15c957f01' 8 years ago
transcoding.c 3bc060f366 doc/examples/transcoding: Use the decoders pixel format if the encoder does not list which are supported 8 years ago

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.