Windows下CLion搭建FFmpeg开发环境

1.ffmpeg下载地址:https://ffmpeg.zeranoe.com/builds/,选择4.2.2 Windows 32-bit shared版本和4.2.2 Windows 32-bit dev版本进行下载。
2.下载完成打开CLion,在CMakeLists中进行如下编辑:

cmake_minimum_required(VERSION 3.15)
project(proj_name C)

set(CMAKE_C_STANDARD 99)

include_directories(C:/Users/asus/Desktop/ffmpeg/ffmpeg-4.2.2-win32-dev/include)
link_directories(C:/Users/asus/Desktop/ffmpeg/ffmpeg-4.2.2-win32-dev/lib)

add_executable(proj_name main.c)

target_link_libraries(
        proj_name
        avcodec
        avdevice
        avfilter
        avformat
        avutil
        postproc
        swresample
        swscale
)

其中proj_name是创建的CLion工程名字。
3.最后进行环境变量的设置,Edit Configurations,在Environment variables中编辑如下:path=C:\Users\asus\Desktop\ffmpeg\ffmpeg-4.2.2-win32-shared\bin,完成以上步骤后,CLion配置ffmpeg就配好了。

你可能感兴趣的:(音视频技术,ffmpeg)