Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.gitignore | D | 12-May-2024 | 338 | 25 | 24 | |
Makefile | D | 12-May-2024 | 2.7 KiB | 65 | 50 | |
Makefile.example | D | 12-May-2024 | 1.9 KiB | 51 | 40 | |
README | D | 12-May-2024 | 888 | 24 | 16 | |
avio_list_dir.c | D | 12-May-2024 | 3.9 KiB | 131 | 95 | |
avio_reading.c | D | 12-May-2024 | 3.9 KiB | 135 | 80 | |
decode_audio.c | D | 12-May-2024 | 7 KiB | 237 | 170 | |
decode_video.c | D | 12-May-2024 | 5.2 KiB | 188 | 120 | |
demuxing_decoding.c | D | 12-May-2024 | 13.2 KiB | 383 | 271 | |
encode_audio.c | D | 12-May-2024 | 6.4 KiB | 239 | 156 | |
encode_video.c | D | 12-May-2024 | 5.5 KiB | 199 | 120 | |
extract_mvs.c | D | 12-May-2024 | 5.5 KiB | 179 | 126 | |
filter_audio.c | D | 12-May-2024 | 11.5 KiB | 364 | 238 | |
filtering_audio.c | D | 12-May-2024 | 10 KiB | 293 | 199 | |
filtering_video.c | D | 12-May-2024 | 9.3 KiB | 292 | 194 | |
http_multiclient.c | D | 12-May-2024 | 5.1 KiB | 157 | 113 | |
hw_decode.c | D | 12-May-2024 | 7.8 KiB | 253 | 177 | |
metadata.c | D | 12-May-2024 | 2 KiB | 61 | 25 | |
muxing.c | D | 12-May-2024 | 20.6 KiB | 650 | 443 | |
qsvdec.c | D | 12-May-2024 | 8 KiB | 272 | 179 | |
remuxing.c | D | 12-May-2024 | 6.2 KiB | 192 | 129 | |
resampling_audio.c | D | 12-May-2024 | 7.8 KiB | 215 | 148 | |
scaling_video.c | D | 12-May-2024 | 4.9 KiB | 141 | 89 | |
transcode_aac.c | D | 12-May-2024 | 34 KiB | 894 | 511 | |
transcoding.c | D | 12-May-2024 | 21.6 KiB | 622 | 480 | |
vaapi_encode.c | D | 12-May-2024 | 6.9 KiB | 225 | 163 | |
vaapi_transcode.c | D | 12-May-2024 | 9.8 KiB | 309 | 217 |
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