ffmpeg之nasm2.13.03编译安装方法及一键shell脚本

在ffmpeg的安装过程中需要libx264的支持,libx264又需要nasm的支持,所以呢,现在海豚来说说nasm的编译安装方式,nasm和yasm一样,都是一个编译器的角色。

PS:如果你觉得编译过程比较艰苦,可以使用文章尾部提供的shell一键安装脚本

nasm源码下载地址:

wget -O nasm-2.13.03.tar.xz https://cae.letogther.cn/shell/tar/nasm-2.13.03.tar.xz

nasm源码包解压

tar xvJf nasm-2.13.03.tar.xz

进入nasm目录

cd nasm-2.13.03

nasm编译并安装

sed -e '/seg_init/d' \
-e 's/pure_func seg_alloc/seg_alloc/' \
-i include/nasmlib.h
./configure --prefix=/usr &&
make
sudo make install

nasm安装完成后,如图所示

nasm-3.13.03【一键安装脚本】

yum -y install wget && wget -O nasm-2.13.03.sh https://cae.letogther.cn/shell/sh/nasm-2.13.03.sh && sh nasm-2.13.03.sh

你可能感兴趣的:(ffmpeg之nasm2.13.03编译安装方法及一键shell脚本)