This commit is contained in:
sebseb7
2022-02-22 21:28:10 +00:00
parent 192066f4f1
commit 0013938954
2 changed files with 14 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
./build-libsrt.sh
git clone -b master --single-branch --depth 1 https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
wget https://github.com/lgeek/FFmpeg/commit/10a7ccaceb56cd4ed1275a155900fb6087fe9f56.diff

12
build-libsrt.sh Executable file
View File

@@ -0,0 +1,12 @@
sudo apt-get install tclsh pkg-config cmake libssl-dev build-essential
if [ -d "srt" ]; then
cd srt
git pull
else
git clone -b master --single-branch --depth 1 https://github.com/Haivision/srt.git
cd srt
fi
./configure
make -j4
sudo make install
cd ..