【流媒体服务器的搭建】2. 源码编译安装ffmpeg
生活随笔
收集整理的這篇文章主要介紹了
【流媒体服务器的搭建】2. 源码编译安装ffmpeg
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前言
- centos 7
ffmpeg 編譯時,打開H264功能時,必須已安裝H264(參考這里)。否則遇錯:ERROR: libx264 not found。
官網
http://ffmpeg.org/
源碼
GITHUB:https://gitee.com/mirrors/ffmpeg.git
GITEE:https://github.com/FFmpeg/FFmpeg.git
源碼編譯安裝ffmpeg
shell> cd /opt # 下載源碼 shell> git clone https://gitee.com/mirrors/ffmpeg.git ffmpeg-source shell> cd ffmpeg-source # 配置 # --prefix=/opt/ffmpeg :安裝目錄/opt/ffmpeg,不指定時,默認安裝 shell> ./configure --prefix=/opt/ffmpeg --enable-shared --enable-static --enable-libx264 --enable-gpl --enable-decoder=h264 --enable-encoder=libx264 # 編譯 + 安裝 shell> make && make install驗證ffmpeg是否安裝成功
shell> /opt/ffmpeg/bin/ffmpeg -version ffmpeg version N-103586-g3bbe0c210b Copyright (c) 2000-2021 the FFmpeg developers built with gcc 9 (GCC) configuration: --prefix=/opt/ffmpeg --enable-shared --enable-static --enable-libx264 --enable-gpl --enable-decoder=h264 --enable-encoder=libx264 libavutil 57. 5.100 / 57. 5.100 libavcodec 59. 7.103 / 59. 7.103 libavformat 59. 5.100 / 59. 5.100 libavdevice 59. 0.101 / 59. 0.101 libavfilter 8. 7.101 / 8. 7.101 libswscale 6. 1.100 / 6. 1.100 libswresample 4. 0.100 / 4. 0.100 libpostproc 56. 0.100 / 56. 0.100錯誤:error while loading shared libraries: libavdevice.so.59: cannot open shared object file: No such file or directory
查找libavdevice.so
shell> find / -name libavdevice.so /opt/ffmpeg/lib/libavdevice.so將lib目錄添加到/etc/ld.so.conf中
shell> echo "/opt/ffmpeg/lib" >> /etc/ld.so.conf shell> ldconfig源碼
GITHUB地址: https://github.com/FFmpeg/FFmpeg.git
GITEE鏡像: https://gitee.com/mirrors/ffmpeg.git
總結
以上是生活随笔為你收集整理的【流媒体服务器的搭建】2. 源码编译安装ffmpeg的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 亲和数(220/284)
- 下一篇: 在Centos7下Hyperledger