Sebastian Ramacher d4a7a6e7fa examples: fix build of mux and resample_audio 1 year ago
..
.gitignore efe2b63c89 doc/examples: Add qsv_transcode example 1 year ago
Makefile 3d4dc6aa77 examples: rename transcoding to transcode 1 year ago
Makefile.example d4a7a6e7fa examples: fix build of mux and resample_audio 1 year 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 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
decode_audio.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
decode_filter_audio.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
decode_filter_video.c 1ae619e8ee examples: rename filtering_video to decode_filter_video 1 year ago
decode_video.c 6b6f7db819 avcodec: add AVCodecContext.frame_num as 64 bit variant to frame_number 1 year ago
demux_decode.c 2296078397 avutil/frame: deprecate AVFrame.coded_picture_number and display_picture_number 1 year 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 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
hw_decode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
mux.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
qsv_decode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
qsv_transcode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
remux.c 34ff361921 examples: apply doxy entries consistency fixes 1 year 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 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
transcode_aac.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
vaapi_encode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year ago
vaapi_transcode.c 34ff361921 examples: apply doxy entries consistency fixes 1 year 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