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 30 31 32 33
| The following packages are already installed: ffmpeg[core,x265,x264,gpl,ffprobe,ffplay,ffmpeg,zlib,xml2,webp,vpx,vorbis,theora,tesseract,ssh,srt,speex,soxr,snappy,sdl2,qsv,opus,openmpt,openjpeg,openh264,opengl,opencl,nvcodec,mp3lame,modplug,lzma,ilbc,iconv,fribidi,freetype,fontconfig,dav1d,bzip2,ass,aom,amf,all,swscale,swresample,avformat,avfilter,avdevice,avcodec]:x64-windows@7.1.1#2 Total install time: 4.28 ms 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
|