Michael Niedermayer 2fece989f8 doc/examples/demuxing_decoding: Drop AVFrame->pts use 7 лет назад
..
.gitignore 5558ff3a9f Merge commit '257f00ec1ab06a2a161f535036c6512f3fc8e801' 8 лет назад
Makefile 767d780ec0 doc/examples: rename avio_list_dir -> avio_dir_cmd 9 лет назад
README a12bf9f50f doc/examples/README: fix typo 10 лет назад
avio_dir_cmd.c 767d780ec0 doc/examples: rename avio_list_dir -> avio_dir_cmd 9 лет назад
avio_reading.c 419800acc4 examples/avio_reading: fix null dereference on error 10 лет назад
decoding_encoding.c 8ef57a0d61 Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb' 8 лет назад
demuxing_decoding.c 2fece989f8 doc/examples/demuxing_decoding: Drop AVFrame->pts use 7 лет назад
extract_mvs.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 лет назад
filter_audio.c f1d6fc7794 Merge commit '6a928293dd29c7f0dcf09107980a1d651c9957df' 10 лет назад
filtering_audio.c 06eef96b69 fix some a/an typos 8 лет назад
filtering_video.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 лет назад
http_multiclient.c e9c58033e8 doc/examples/http_multiclient: Fix occured typo 8 лет назад
metadata.c 341639fe80 doc/examples: remove pathes from doxy examples 10 лет назад
muxing.c 8ef57a0d61 Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb' 8 лет назад
qsvdec.c a9e1f2cc61 examples/qsvdec: convert to codecpar 8 лет назад
remuxing.c c2f861ca42 Replace remaining occurances of av_free_packet with av_packet_unref 8 лет назад
resampling_audio.c 68bca03951 doc/examples: remove unneeded NULL checks 9 лет назад
scaling_video.c 68bca03951 doc/examples: remove unneeded NULL checks 9 лет назад
transcode_aac.c 6bc5ef37cb Merge commit 'ac6d53589f3631ae08467c784fb371a15c957f01' 8 лет назад
transcoding.c 3bc060f366 doc/examples/transcoding: Use the decoders pixel format if the encoder does not list which are supported 8 лет назад

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.