Cog/ThirdParty/ffmpeg/share/ffmpeg/examples
Christopher Snowhill 0001bd581b Phase one of Big Sur
2020-06-30 01:04:55 -07:00
..
avio_list_dir.c Phase one of Big Sur 2020-06-30 01:04:55 -07:00
avio_reading.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
decode_audio.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
decode_video.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
demuxing_decoding.c Phase one of Big Sur 2020-06-30 01:04:55 -07:00
encode_audio.c Updated FFmpeg. 2018-02-18 20:44:10 -08:00
encode_video.c Phase one of Big Sur 2020-06-30 01:04:55 -07:00
extract_mvs.c Updated FFmpeg. 2018-02-18 20:44:10 -08:00
filter_audio.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
filtering_audio.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
filtering_video.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
http_multiclient.c Updated FFmpeg. 2018-02-18 20:44:10 -08:00
hw_decode.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
Makefile Phase one of Big Sur 2020-06-30 01:04:55 -07:00
metadata.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
muxing.c Phase one of Big Sur 2020-06-30 01:04:55 -07:00
qsvdec.c Updated FFmpeg. 2018-02-18 20:44:10 -08:00
README Updated FFmpeg. 2017-12-16 19:57:49 -08:00
remuxing.c Updated FFmpeg. 2018-02-18 20:44:10 -08:00
resampling_audio.c Updated FFmpeg. 2017-12-16 19:57:49 -08:00
scaling_video.c Updated FFmpeg. 2017-12-16 19:57:49 -08:00
transcode_aac.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
transcoding.c Updated FFmpeg 2019-10-15 19:15:52 -07:00
vaapi_encode.c Phase one of Big Sur 2020-06-30 01:04:55 -07:00
vaapi_transcode.c Updated FFmpeg 2019-10-15 19:15:52 -07:00

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.