WIN11安装FFmpeg
官网: https://ffmpeg.org/download.html#build-windows
找 Windows builds by BtbN,跳转到:
https://github.com/BtbN/FFmpeg-Builds/releases
选择合适的版本下载 。 我这里下载的是 ffmpeg-master-latest-win64-gpl-shared
下载完后,进行解压,然后把解压有的路径下的bin目录加入到环境变量中
添加好环境变量后,cmd输入ffmpeg -version
此时安装完成
Clion使用FFmpeg测试
编写CMakeList.txt
cmake_minimum_required(VERSION 3.28)
project(ffmpegtest01)
set(CMAKE_CXX_STANDARD 20)
add_executable(ffmpegtest01 main.cpp)
#对应的路径自己替换成自己的安装路径
target_include_directories(ffmpegtest01 PUBLIC "C:\\Users\\Dark\\ffmpeg-master-latest-win64-gpl-shared\\include")
target_link_directories(ffmpegtest01 PUBLIC "C:\\Users\\Dark\\ffmpeg-master-latest-win64-gpl-shared\\lib")
target_link_libraries(ffmpegtest01 PUBLIC
avcodec
avdevice
avfilter
avformat
avutil
postproc
swresample
swscale
)
编写main.cpp
#include <cstdio>
extern "C" {
#include "libavformat/avformat.h"
}
int main() {
av_log_set_level(AV_LOG_INFO);
av_log(NULL, AV_LOG_INFO, "avformat_configurations: \n %s", avformat_configuration());
return 0;
}
运行
通过官方文档 : https://www.ffmpeg.org/documentation.html 可以查看更多FFmpeg的操作方法。
标签:FFmpeg,avformat,shared,WIN11,include,安装,ffmpegtest01,ffmpeg From: https://www.cnblogs.com/DarkH/p/18148347