ffmpeg推流时,可能出现错误:Unknown encoder 'libx264'
Posted blackhumour2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ffmpeg推流时,可能出现错误:Unknown encoder 'libx264'相关的知识,希望对你有一定的参考价值。
使用如下命令推流时:
ffmpeg -re -i a.mp4 -vcodec libx264 -acodec aac -f flv rtmp://172.31.102.165:1935/myapp
可能会出现如下错误:
Unknown encoder ‘libx264‘
即,缺少libx264库,需要安装该库:
1. git clone git://git.videolan.org/x264.git
2. cd x264
3. ./configure --enable-static --enable-share
4. make
5. sudo make install
需要重新编译安装ffmpeg
1. 配置ffmpeg时,加上x264,如:
./configure --enable-gpl --enable-libx264
2. make clean
3. make
4. make install
此时,输入ffmpeg时,可能会出现错误:
ffmpeg: error while loading shared libraries: libavdevice.so.57: cannot open shared object file: No such file or directory
*****************************************
修改ld.so.conf文件
1. $ sudo vi /etc/ld.so.conf
2. 修改如下
include ld.so.conf.d/*.conf
/usr/local/ffmpeg/lib ///usr/local/ffmpeg 目录是我ffmpeg安装目录,根据你的安装目录改吧
3. 使之生效
$ sudo ldconfig
*****************************************
为 Ffmpeg 加入环境变量
vi /etc/profile
加入以下内容:
export PATH="/usr/local/ffmpeg/bin:$PATH"
然后保存并运行source /etc/profile
以上是关于ffmpeg推流时,可能出现错误:Unknown encoder 'libx264'的主要内容,如果未能解决你的问题,请参考以下文章
ffmpeg缺少 libx264依赖时的安装方法 (linux 下)
ffmpeg rtmp 推流错误WriteN, RTMP send error 10053 10038
错误记录FFmpeg 推流报错 ( FLV does not support sample rate 8000, choose from (44100, 22050, 11025) )