blob: b2d02a089b8820297121f463aa2b10264f318e7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
ffmpeg provides CMake integration:
find_package(FFMPEG REQUIRED)
target_include_directories(main PRIVATE ${FFMPEG_INCLUDE_DIRS})
target_link_directories(main PRIVATE ${FFMPEG_LIBRARY_DIRS})
target_link_libraries(main PRIVATE ${FFMPEG_LIBRARIES})
ffmpeg provides pkg-config modules:
# FFmpeg codec library
libavcodec
# FFmpeg device handling library
libavdevice
# FFmpeg audio/video filtering library
libavfilter
# FFmpeg container format library
libavformat
# FFmpeg utility library
libavutil
# FFmpeg audio resampling library
libswresample
# FFmpeg image rescaling library
libswscale
|