mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 19:40:14 +00:00
added by the commit f3003ed1
For the original reason it is no longer needed (the higher bit depth
x264 is already included in distro repositories). Anyways, the version
of libx264, that will be installed, is taken from ppa:savoury1/vlc3,
anyways (newer one).
14 lines
379 B
Bash
Executable File
14 lines
379 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
cd /var/tmp/ffmpeg
|
|
( cd libvpx && sudo make install )
|
|
( cd nv-codec-headers && sudo make install )
|
|
( cd aom/build && sudo cmake --install . )
|
|
sudo cmake --install SVT-AV1/Build
|
|
sudo cmake --install SVT-HEVC/Build/linux/Release
|
|
sudo cmake --install SVT-VP9/Build
|
|
sudo cmake --build oneVPL/build --config Release --target install
|
|
|
|
sudo make install
|
|
sudo ldconfig
|