Michael Niedermayer 91d27f7e02 doc/examples/demux_decode: Simplify loop 2 months ago
..
.gitignore efe2b63c89 doc/examples: Add qsv_transcode example 1 year ago
Makefile 3d4dc6aa77 examples: rename transcoding to transcode 1 year ago
Makefile.example 7de3fcb059 examples: fix build of mux and resample_audio 11 months ago
README e3bbf5c17d doc/examples: fix make command, reference Makefile.example 1 year ago
avio_http_serve_files.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
avio_list_dir.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
avio_read_callback.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
decode_audio.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
decode_filter_audio.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
decode_filter_video.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
decode_video.c 6b6f7db819 avcodec: add AVCodecContext.frame_num as 64 bit variant to frame_number 1 year ago
demux_decode.c 91d27f7e02 doc/examples/demux_decode: Simplify loop 1 month ago
encode_audio.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
encode_video.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
extract_mvs.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
filter_audio.c 9223c92c88 doc/examples: Always use <> includes 3 months ago
hw_decode.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
mux.c cd0d267b92 doc/examples/mux: rename alloc_picture to alloc_frame 1 year ago
qsv_decode.c 9223c92c88 doc/examples: Always use <> includes 3 months ago
qsv_transcode.c cae0f2bc55 doc/examples/qsv_transcode: Initialize pointer before free 2 months ago
remux.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
resample_audio.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
scale_video.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
show_metadata.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
transcode.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
transcode_aac.c 790f793844 avutil/common: Don't auto-include mem.h 3 months ago
vaapi_encode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
vaapi_transcode.c c9c11a0866 doc/examples/vaapi_transcode: Simplify loop 2 months 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 run:
make -f Makefile.example

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 -f Makefile.example