File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ install_libvpx() {
1212
1313FFMPEG_GIT_DEPTH=5000 # greater depth is useful for 3-way merges
1414install_svt () {
15- # ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-HEVC && cd SVT-HEVC/Build/linux && ./build.sh release && cd Release && make -j $(nproc) && sudo make install || exit 1 )
15+ ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-HEVC && cd SVT-HEVC/Build/linux && ./build.sh release && cd Release && make -j $( nproc) && sudo make install || exit 1 )
1616 ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-AV1 && cd SVT-AV1 && cd Build && cmake .. -G" Unix Makefiles" -DCMAKE_BUILD_TYPE=Release && make -j $( nproc) && sudo make install || exit 1 )
17- # ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-VP9.git && cd SVT-VP9/Build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j $(nproc) && sudo make install || exit 1 )
17+ ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-VP9.git && cd SVT-VP9/Build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j $( nproc) && sudo make install || exit 1 )
1818 # if patch apply fails, try increasing $FFMPEG_GIT_DEPTH
19- # git apply -3 SVT-HEVC/ffmpeg_plugin/master-*.patch
20- # git apply -3 SVT-VP9/ffmpeg_plugin/master-*.patch
19+ git apply -3 SVT-HEVC/ffmpeg_plugin/master-* .patch
20+ git apply -3 SVT-VP9/ffmpeg_plugin/master-* .patch
2121}
2222
2323# The NVENC API implies respective driver version (see libavcodec/nvenc.c) - 455.28 (Linux) / 456.71 (Windows) for v11.0
4343 --enable-libdav1d \
4444 --enable-librav1e \
4545 --enable-libsvtav1 \
46- # --enable-libsvthevc \
47- # --enable-libsvtvp9 \
46+ --enable-libsvthevc \
47+ --enable-libsvtvp9 \
4848
4949make -j $( nproc)
5050sudo make install
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cd /var/tmp/ffmpeg
66( cd nv-codec-headers && sudo make install )
77( cd aom/build && sudo cmake --install . )
88( cd SVT-AV1/Build && sudo make install )
9- # ( cd SVT-HEVC/Build/linux/Release && sudo make install || exit 1 )
10- # ( cd SVT-VP9/Build && sudo make install || exit 1 )
9+ ( cd SVT-HEVC/Build/linux/Release && sudo make install || exit 1 )
10+ ( cd SVT-VP9/Build && sudo make install || exit 1 )
1111sudo make install
1212sudo ldconfig
You can’t perform that action at this time.
0 commit comments