mac安装 ffmpeg 没有ffplay

前段时间,花了不少时间 安装 ffmpeg(4.3.4),以为安装完毕了,但最近要学习ffplay相关命令时,却发现没有此命令。后来搜索资料发现,需要安装sdl2 才能编译出ffmpeg,否则在configure 阶段 program 不会出现 ffplay
mac安装 ffmpeg 没有ffplay_第1张图片
后来照着网上命令 安装了 sdl2 发现还是 在configure 阶段出现不了

后来发现安装 在configure 阶段少了 --enable-sdl`

./configure --prefix=/usr/local/ffmpeg --enable-gpl --enable-versi on3 --enable-nonfree --enable-postproc --enable-libass --enable-l ibcelt --enable-libfdk-aac --enable-libfreetype --enable-libmp3lam e --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-l ibopenjpeg --enable-openssl --enable-libopus --enable-libspeex --e nable-libtheora --enable-libvorbis --enable-libvpx --enable-libx 264 --enable-libxvid --disable-static --enable-shared --enable-sdl

同时还需要告诉 系统,sdl的安装位置, 否则会报错

#SDL2 ENVIRONMENT
export C_INCLUDE_PATH=/usr/local/3rdparty/sdl2/include/SDL2:$C_INCLUDE_PATH
export LD_LIBRARY_PATH=/usr/local/3rdparty/sdl2/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=/usr/local/3rdparty/sdl2/lib/pkgconfig:$PKG_CONFIG_PATH

参考

https://www.cnblogs.com/breakpointlab/p/13213681.html

你可能感兴趣的:(ffmpeg,macos,linux)