ffmpeg/doc/examples
Stefano Sabatini 3d4dc6aa77 examples: rename transcoding to transcode 2023-02-11 17:49:01 +01:00
..
.gitignore doc/examples: Add qsv_transcode example 2022-11-22 13:52:38 +08:00
Makefile examples: rename transcoding to transcode 2023-02-11 17:49:01 +01:00
Makefile.example examples: rename transcoding to transcode 2023-02-11 17:49:01 +01:00
README doc/examples/README: fix typo 2013-12-02 14:35:39 +01:00
avio_http_serve_files.c examples: rename http_multiclient to avio_http_serve_files 2023-02-11 17:49:01 +01:00
avio_list_dir.c examples/avio_dir_cmd: drop support for move/delete operations 2020-03-16 09:23:37 +01:00
avio_read_callback.c examples: rename avio_reading to avio_read_callback 2023-02-11 17:49:01 +01:00
decode_audio.c doc/examples: convert to new channel layout-API 2022-03-15 09:42:47 -03:00
decode_filter_audio.c examples: rename filtering_audio to decode_filter_audio 2023-02-11 17:49:01 +01:00
decode_filter_video.c examples: rename filtering_video to decode_filter_video 2023-02-11 17:49:01 +01:00
decode_video.c examples/decode_video: flush parser to fix missing frame 2022-04-22 11:26:51 +08:00
demux_decode.c examples: rename demuxing_decoding to demux_decode 2023-02-11 17:49:01 +01:00
encode_audio.c doc/examples: convert to new channel layout-API 2022-03-15 09:42:47 -03:00
encode_video.c examples: rename muxing to mux 2023-02-11 17:49:01 +01:00
extract_mvs.c doc/examples/extract_mvs: add motion information 2022-09-23 22:42:19 +02:00
filter_audio.c doc/examples: convert to new channel layout-API 2022-03-15 09:42:47 -03:00
hw_decode.c examples/hw_decode: Don't use stack packet 2021-10-03 20:50:49 +02:00
mux.c examples: rename muxing to mux 2023-02-11 17:49:01 +01:00
qsv_decode.c examples: rename qsvdec to qsv_decode 2023-02-11 17:49:01 +01:00
qsv_transcode.c doc/examples: Add qsv_transcode example 2022-11-22 13:52:38 +08:00
remux.c examples: rename remuxing to remux 2023-02-11 17:49:01 +01:00
resample_audio.c examples: rename resampling audio to resample_audio 2023-02-11 17:49:01 +01:00
scale_video.c examples: rename scaling_video to scale_video 2023-02-11 17:49:01 +01:00
show_metadata.c examples: rename metadata to show_metadata 2023-02-11 17:49:01 +01:00
transcode.c examples: rename transcoding to transcode 2023-02-11 17:49:01 +01:00
transcode_aac.c doc/examples/transcode_aac: Bump date 2022-05-02 15:01:15 +05:30
vaapi_encode.c avcodec/codec, allcodecs: Constify the AVCodec API 2021-04-27 10:43:14 -03:00
vaapi_transcode.c avformat/avformat, utils: Make av_find_best_stream const-correct 2021-04-27 10:43:14 -03:00

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 just use "make", 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.