Linux 下编译 x264源码

# git clone http://git.videolan.org/git/x264.git
# cd x264/
# ./configure
# ./make

编译完成得到命令行工具,./x264。

如果在 ./configure 提示未安装 yasm,则

# sudo apt-get install yasm 

安装即可,查看完整的帮助信息:

# ./x264 --fullhelp

参考 vs2005运行x264和Linux下的运行

你可能感兴趣的:(Linux 下编译 x264源码)