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

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