mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 09:40:18 +00:00
Temporarily disable SVT HEVC/VP9. With current FFmpeg upstream updates, patch doesn't apply and there is no simple way to fix now (FFCodec was introduced in addition to AVCodec) so disable it at least temporarily until the patch is fixed. References: - https://github.com/CESNET/UltraGrid/actions/runs/2016955211 - https://github.com/OpenVisualCloud/SVT-HEVC/issues/614
13 lines
388 B
Bash
Executable File
13 lines
388 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
cd /var/tmp/ffmpeg
|
|
( 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-AV1/Build && sudo make install )
|
|
#( cd SVT-HEVC/Build/linux/Release && sudo make install || exit 1 )
|
|
#( cd SVT-VP9/Build && sudo make install || exit 1 )
|
|
sudo make install
|
|
sudo ldconfig
|