ffmpeg源码安装中nasm/yasm版本问题
2020-03-26 本文已影响0人
panjinya
系统centos,按照ffmpeg官网步骤安装依赖包和ffmpeg
会有Found no assembler Minimum version is nasm-2.13这样的错误信息。切记不要用命令行的提示--disable-asm,因为这样的话,最好编译ffmpeg还是会有问题。
那么有哪几种情况呢?
- 1.系统上有旧的yasm,使用yasm --version查看,这个用yum remove yasm卸载
- 2.系统上有旧的nasm,使用nasm --version查看,这个用yum remove nasm && hash -d nasm卸载
- 3.安装新版本nasm/yasm后,没有配置环境变量。按照ffmpeg官网的操作,会安装到HOME/ffmpeg_build加到配置文件.bash_profile中的PATH里面,然后执行source .bash_profile
done