下載包:html
wget https://ffmpeg.org/releases/ffmpeg-4.1.tar.gzjava
GCC若是沒有yasm:linux
http://yasm.tortall.net/Download.html 下載yasmbash
tar -zxvf yasm.tar.gz ./configure make make install
回到上一級目錄:app
tar -zxvf ffmpeg-4.1.tar.gz測試
cd ffmpeg-4.1.net
./configure --prefix=/usr/local/ffmpegcode
make && make installhtm
測試,將mp4文件轉換成ts文件:blog
ffmpeg -y -i test.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb test.ts
測試,將ts文件轉換成mp4文件:
ffmpeg -i test.ts -acodec copy -vcodec copy -f mp4 test.mp4
參考:https://java-er.com/blog/linux-installffmpeg/
https://blog.51cto.com/12889016/2102827?utm_source=oschina-app