分类 Ubuntu 下的文章

“Ubuntu是以桌面应用为主的Linux发行版,基于Debian。Ubuntu有三个正式版本,包括桌面版、服务器版及用于物联网设备和机器人的Core版。从17.10版本开始,Ubuntu以GNOME为默认桌面环境。 Ubuntu是著名的Linux发行版之一,也是目前最多用户的Linux版本。 ”

git clone https://code.videolan.org/videolan/x264.git
cd x264
./configure --disable-asm
platform: X86_64
byte order: little-endian
system: LINUX
cli: yes
libx264: internal
shared: no
static: no
bashcompletion: yes
asm: no
interlaced: yes
avs: avxsynth
lavf: no
ffms: no
mp4: no
gpl: yes
thread: posix
opencl: yes
filters: crop select_every
lto: no
debug: no
gprof: no
strip: no
PIC: no
bit depth: all
chroma format: all

make -j4

make install

下载x264并编译

git clone git://git.videolan.org/x264.git
./configure --enable-shared --enable-static --prefix=/usr
make -j8
make install
解释一下,指定/usr的话,安装好,不用配置路径。
j8的目的是编译起来,用8路进行make,节省编译时间

2 把libx264编译到ffmpeg

./configure --enable-gpl --enable-libx264 --prefix=/root/extest/webMP4/ffmpeg
make -j8
make instal

就可以了
Referenced from:https://blog.csdn.net/dong_beijing/article/details/78366732