Skip to content

Commit b6a5579

Browse files
committed
add ffmpeg SVT-AV1
1 parent a7e5e19 commit b6a5579

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

ffmpeg/Dockerfile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,17 @@ RUN set -xe && \
355355
make -j$(nproc) && \
356356
make install
357357

358+
# SCT-AV1
359+
WORKDIR /usr/local/ffmpeg_sources
360+
RUN set -xe && \
361+
git -C SVT-AV1 pull 2> /dev/null || \
362+
git clone --depth=1 https://github.com/OpenVisualCloud/SVT-AV1 && \
363+
cd SVT-AV1 && \
364+
cd Build && \
365+
cmake .. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release && \
366+
make -j $(nproc) && \
367+
make install
368+
358369
# install nvidias codec API
359370
WORKDIR /usr/local/ffmpeg_sources
360371
RUN set -xe && \
@@ -384,7 +395,7 @@ RUN set -xe && \
384395
--enable-libfreetype \
385396
--enable-libmp3lame \
386397
--enable-libopus \
387-
--enable-libsvtav1 \
398+
--enable-libsvtav1 \
388399
--enable-libvorbis \
389400
--enable-libsnappy \
390401
--enable-libvpx \

0 commit comments

Comments
 (0)