/
githubmirror
/
FFmpeg
ОбзорДокументацияВойти
/
githubmirror
/
FFmpeg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
FFmpeg/
doc/examples/
..
.gitignore

doc/examples: Add qsv_transcode example

4 года назад
Makefile

ffbuild: show install destinations in the INSTALL build output

10 часов назад
Makefile.example

examples: fix build of mux and resample_audio

3 года назад
README

doc/examples: fix make command, reference Makefile.example

3 года назад
avio_http_serve_files.c

examples: apply doxy entries consistency fixes

3 года назад
avio_list_dir.c

examples: apply doxy entries consistency fixes

3 года назад
avio_read_callback.c

examples: Add av_freep to avoid potential memory leak

год назад
decode_audio.c

examples: Add check and replace av_free() to avoid potential memory errors

год назад
decode_filter_audio.c

doc/examples/decode_filter_audio: remove unused unistd.h include

год назад
decode_filter_video.c

doc/examples/decode_filter_video: use av_usleep

год назад
decode_video.c

doc/examples/decode_video: check fopen return value in pgm_save

5 месяцев назад
demux_decode.c

doc/examples/demux_decode: update ffplay command for audio and video output

3 месяца назад
encode_audio.c

doc/examples/encode_audio: Don't access deprecated AVCodec fields

2 месяца назад
encode_video.c

examples: apply doxy entries consistency fixes

3 года назад
extract_mvs.c

doc/examples/extract_mvs: fix memory leak in codec context initialization

7 месяцев назад
filter_audio.c

examples: Add proper deallocations to avoid potential memory leaks

год назад
hw_decode.c

doc/examples/hw_decode: check fopen return value for output file

5 месяцев назад
mux.c

doc/examples/mux: Don't access deprecated AVCodec fields

2 месяца назад
qsv_decode.c

doc/examples/qsv_decode: fix raw frame dump for chroma planes

5 месяцев назад
qsv_transcode.c

doc/examples: fix output context cleanup in transcode examples

5 месяцев назад
remux.c

doc/examples/remux: fix NULL pointer dereference in cleanup

5 месяцев назад
resample_audio.c

examples: apply doxy entries consistency fixes

3 года назад
scale_video.c

examples: apply doxy entries consistency fixes

3 года назад
show_metadata.c

examples: apply doxy entries consistency fixes

3 года назад
transcode.c

doc/examples/transcode: query encoder for supported configs

5 месяцев назад
transcode_aac.c

doc/examples/transcode_aac: Don't access deprecated AVCodec.sample_fmts

2 месяца назад
vaapi_encode.c

doc/examples/vaapi_encode: return raw error codes from encode_write

5 месяцев назад
vaapi_transcode.c

doc/examples: fix output context cleanup in transcode examples

5 месяцев назад
README
FFmpeg examples README
----------------------
 
Both following use cases rely on pkg-config and make, thus make sure
that you have them installed and working on your system.
 
 
Method 1: build the installed examples in a generic read/write user directory
 
Copy to a read/write user directory and run:
make -f Makefile.example
 
It will link to the libraries on your system, assuming the PKG_CONFIG_PATH is
correctly configured.
 
Method 2: build the examples in-tree
 
Assuming you are in the source FFmpeg checkout directory, you need to build
FFmpeg (no need to make install in any prefix). Then just run "make examples".
This will build the examples using the FFmpeg build system. You can clean those
examples using "make examplesclean"
 
If you want to try the dedicated Makefile examples (to emulate the first
method), go into doc/examples and run a command such as
PKG_CONFIG_PATH=pc-uninstalled make -f Makefile.example