• Home
Name Date Size #Lines LOC

..--

.gitignoreD06-Mar-2025338 2524

MakefileD06-Mar-20252.7 KiB6550

Makefile.exampleD06-Mar-20251.9 KiB5140

READMED06-Mar-2025888 2416

avio_list_dir.cD06-Mar-20253.9 KiB13195

avio_reading.cD06-Mar-20253.9 KiB13580

decode_audio.cD06-Mar-20257 KiB237170

decode_video.cD06-Mar-20255.3 KiB192124

demuxing_decoding.cD06-Mar-202513.2 KiB383271

encode_audio.cD06-Mar-20256.5 KiB241158

encode_video.cD06-Mar-20256.4 KiB217120

extract_mvs.cD06-Mar-20255.8 KiB190136

filter_audio.cD06-Mar-202511.5 KiB363237

filtering_audio.cD06-Mar-202510 KiB295201

filtering_video.cD06-Mar-20259.4 KiB294196

http_multiclient.cD06-Mar-20255.1 KiB157113

hw_decode.cD06-Mar-20257.9 KiB257180

metadata.cD06-Mar-20252 KiB6125

muxing.cD06-Mar-202520.5 KiB649442

qsvdec.cD06-Mar-20256.9 KiB245158

remuxing.cD06-Mar-20256.3 KiB199132

resampling_audio.cD06-Mar-20257.9 KiB217150

scaling_video.cD06-Mar-20254.9 KiB14189

transcode_aac.cD06-Mar-202533.8 KiB894512

transcoding.cD06-Mar-202521.7 KiB625483

vaapi_encode.cD06-Mar-20256.9 KiB225163

vaapi_transcode.cD06-Mar-20259.9 KiB309217

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