• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

MakefileH A D07-Nov-20202.7 KiB6550

Makefile.exampleH A D07-Nov-20201.9 KiB5140

READMEH A D07-Nov-2020888 2416

avio_dir_cmd.cH A D07-Nov-20205.4 KiB179140

avio_reading.cH A D07-Nov-20203.9 KiB13580

decode_audio.cH A D07-Nov-20207 KiB237170

decode_video.cH A D07-Nov-20205.2 KiB188120

demuxing_decoding.cH A D07-Nov-202014.2 KiB391274

encode_audio.cH A D07-Nov-20206.4 KiB239156

encode_video.cH A D07-Nov-20205.5 KiB199120

extract_mvs.cH A D07-Nov-20205.5 KiB179126

filter_audio.cH A D07-Nov-202011.5 KiB364238

filtering_audio.cH A D07-Nov-202010 KiB293199

filtering_video.cH A D07-Nov-20209.3 KiB292194

http_multiclient.cH A D07-Nov-20205.1 KiB157113

hw_decode.cH A D07-Nov-20207.8 KiB253177

metadata.cH A D07-Nov-20202 KiB6125

muxing.cH A D07-Nov-202021 KiB668457

qsvdec.cH A D07-Nov-20208 KiB272179

remuxing.cH A D07-Nov-20206.2 KiB192129

resampling_audio.cH A D07-Nov-20207.8 KiB215148

scaling_video.cH A D07-Nov-20204.9 KiB14189

transcode_aac.cH A D07-Nov-202033.8 KiB886505

transcoding.cH A D07-Nov-202021.7 KiB621491

vaapi_encode.cH A D07-Nov-20206.9 KiB225163

vaapi_transcode.cH A D07-Nov-20209.8 KiB307216

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