我正在尝试遵循this指南来编译ffmpeg,它没有显示如何启用libsrt,我尝试了以下配置,但收到错误libavformat/libsrt.c:24:10: fatal error: srt/srt.h: No such file or directory
。
./configure --prefix=/home/hao/repo/Transcoder/Release/ffmpeg --enable-shared --enable-demuxer='mpegts,mpegvideo,image2' --enable-muxer=mpegts --enable-protocol='file,udp,rtp,srt' --enable-filter=overlay --enable-zlib --enable-libsrt --disable-doc
答案 0 :(得分:1)
您似乎没有遵循compile guide,但是如果这样做,那么Haivision SRT的编译说明可能如下:
sudo apt-get install libssl-dev
cd ~/ffmpeg_sources
git clone --depth 1 https://github.com/Haivision/srt.git
mkdir srt/build
cd srt/build
cmake -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_C_DEPS=ON -DENABLE_SHARED=OFF -DENABLE_STATIC=ON ..
make
make install
然后继续执行指南。进入ffmpeg
部分时,请确保将--enable-libsrt
添加到配置行。