• Home
Name Date Size #Lines LOC

..--

.gitignoreD12-May-2024338 2524

MakefileD12-May-20242.7 KiB6550

Makefile.exampleD12-May-20241.9 KiB5140

READMED12-May-2024888 2416

avio_list_dir.cD12-May-20243.9 KiB13195

avio_reading.cD12-May-20243.9 KiB13580

decode_audio.cD12-May-20247 KiB237170

decode_video.cD12-May-20245.2 KiB188120

demuxing_decoding.cD12-May-202413.2 KiB383271

encode_audio.cD12-May-20246.4 KiB239156

encode_video.cD12-May-20245.5 KiB199120

extract_mvs.cD12-May-20245.5 KiB179126

filter_audio.cD12-May-202411.5 KiB364238

filtering_audio.cD12-May-202410 KiB293199

filtering_video.cD12-May-20249.3 KiB292194

http_multiclient.cD12-May-20245.1 KiB157113

hw_decode.cD12-May-20247.8 KiB253177

metadata.cD12-May-20242 KiB6125

muxing.cD12-May-202420.6 KiB650443

qsvdec.cD12-May-20248 KiB272179

remuxing.cD12-May-20246.2 KiB192129

resampling_audio.cD12-May-20247.8 KiB215148

scaling_video.cD12-May-20244.9 KiB14189

transcode_aac.cD12-May-202434 KiB894511

transcoding.cD12-May-202421.6 KiB622480

vaapi_encode.cD12-May-20246.9 KiB225163

vaapi_transcode.cD12-May-20249.8 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