树莓派安装ffmpeg
环境
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 10 (buster)
Release: 10
Codename: buster
安装H264
git clone —depth 1 https://code.videolan.org/videolan/x264
进入文件
cd x264
./configure —host=arm-unknown-linux-gnueabi —enable-static —disable-opencl
make -j4
sudo make install
2.安装ffmpeg
git clone git://source.ffmpeg.org/ffmpeg --depth=1
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install
3.测试
ffmpeg -i test.h264 -vcodec copy test.mp4
还没有评论,来说两句吧...