Name Date Size

..25-Oct-20244 KiB

.gitignoreH A D25-Oct-2024338

avio_list_dir.cH A D25-Oct-20243.9 KiB

avio_reading.cH A D25-Oct-20243.9 KiB

decode_audio.cH A D25-Oct-20247 KiB

decode_video.cH A D25-Oct-20245.3 KiB

demuxing_decoding.cH A D25-Oct-202413.2 KiB

encode_audio.cH A D25-Oct-20246.5 KiB

encode_video.cH A D25-Oct-20246.4 KiB

extract_mvs.cH A D25-Oct-20245.8 KiB

filter_audio.cH A D25-Oct-202411.5 KiB

filtering_audio.cH A D25-Oct-202410 KiB

filtering_video.cH A D25-Oct-20249.4 KiB

http_multiclient.cH A D25-Oct-20245.1 KiB

hw_decode.cH A D25-Oct-20247.9 KiB

MakefileH A D25-Oct-20242.7 KiB

Makefile.exampleH A D25-Oct-20241.9 KiB

metadata.cH A D25-Oct-20242 KiB

muxing.cH A D25-Oct-202420.5 KiB

qsvdec.cH A D25-Oct-20246.9 KiB

READMEH A D25-Oct-2024888

remuxing.cH A D25-Oct-20246.3 KiB

resampling_audio.cH A D25-Oct-20247.9 KiB

scaling_video.cH A D25-Oct-20244.9 KiB

transcode_aac.cH A D25-Oct-202433.8 KiB

transcoding.cH A D25-Oct-202421.7 KiB

vaapi_encode.cH A D25-Oct-20246.9 KiB

vaapi_transcode.cH A D25-Oct-20249.9 KiB

README

1FFmpeg examples README
2----------------------
3
4Both following use cases rely on pkg-config and make, thus make sure
5that you have them installed and working on your system.
6
7
8Method 1: build the installed examples in a generic read/write user directory
9
10Copy to a read/write user directory and just use "make", it will link
11to the libraries on your system, assuming the PKG_CONFIG_PATH is
12correctly configured.
13
14Method 2: build the examples in-tree
15
16Assuming you are in the source FFmpeg checkout directory, you need to build
17FFmpeg (no need to make install in any prefix). Then just run "make examples".
18This will build the examples using the FFmpeg build system. You can clean those
19examples using "make examplesclean"
20
21If you want to try the dedicated Makefile examples (to emulate the first
22method), go into doc/examples and run a command such as
23PKG_CONFIG_PATH=pc-uninstalled make.
24