1、下载ffmpeg,解压
tar -jxvf ffmpeg-3.2.4.tar.bz2
cd ffmpeg-3.2.4
./configure --enable-static --disable-yasm //生成makefile 用静态库的形式编译
make //生成ffmpeg ffprobe ffserver等可执行文件 大概要编译20分钟
make examples //编译 ffmpeg-3.2.4\doc\examples\ 下的例程
2、交叉编译方法
./configure --enable-static --disable-yasm --cross-prefix=arm-hisiv300-linux- --enable-cross-compile --arch=arm --target-os=linux
arm-hisiv300-linux-gcc decoding_encoding.c -o test -I /home/work/ffmpeg-3.2.4 -lrt -lpthread -lm -ldl libavcodec.a libavdevice.a libavfilter.a libavformat.a libavutil.a libswresample.a libswscale.a
//开发的时候注意链接-lrt -lpthread -lm -ldl 几个库
3、使用ffmpeg基本命令
//无编解码过程,无损转换
./ffmpeg -i test.h264 -vcodec copy xxx.avi //封装264裸流到avi
./ffmpeg -i test.h264 -vcodec copy test.mp4 //封装264裸流到mp4
./ffmpeg -i xxx.avi -vcodec copy test1.mp4 //avi到mp4互转
//avi提取h264裸流
./ffmpeg -i xxx.avi -vcodec copy -an -f avi test1.264
-an: disable audio 不要音频
“`