Files
UltraGrid/.github/scripts/Linux/install_ffmpeg.sh
Martin Pulec e9ab392f16 GitHub CI [Linux]: build libvpx with --enable-vp9-highbitdepth
Start building own libvpx with high bit depth option.
2021-04-13 16:16:28 +02:00

13 lines
357 B
Bash
Executable File

#!/bin/bash -eux
cd /var/tmp/ffmpeg
( cd nasm && sudo make install )
( cd libvpx && sudo make install )
( cd x264 && sudo make install )
( cd nv-codec-headers && sudo make install )
( cd aom/build && sudo cmake --install . )
( cd SVT-HEVC/Build/linux/Release && sudo make install )
( cd SVT-AV1/Build && sudo make install )
sudo make install
sudo ldconfig