Files
UltraGrid/.github/scripts/Linux/install_ffmpeg.sh
Martin Pulec f3003ed18f GitHub CI: build own x264 [Linux]
In order to support 10-bit codecs.
2020-08-04 16:34:12 +02:00

10 lines
218 B
Bash
Executable File

#!/bin/bash -eux
cd /var/tmp/ffmpeg
( cd nasm && sudo make install )
( cd x264 && sudo make install )
( cd nv-codec-headers && sudo make install )
( cd aom/build && sudo make install )
sudo make install
sudo ldconfig