Skip to content

Commit 3553c16

Browse files
committed
3.0.0
Fix a bug of `install-ffmpeg-4_4.sh`
1 parent 478a07b commit 3553c16

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

install-ffmpeg-4_4.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ cd vmaf-2.1.1/libvmaf/build || fail
167167
meson setup -Denable_tests=false -Denable_docs=false --buildtype=release --default-library=static .. --prefix "$BUILD_PATH" --bindir="$BUILD_PATH/bin" --libdir="$BUILD_PATH/lib" || fail
168168
ninja -j $(nproc) || fail
169169
sudo ninja install || fail
170-
sudo cp $BUILD_PATH/bin/SvtAv1* $BIN_PATH || fail
170+
sudo cp $BUILD_PATH/bin/vmaf $BIN_PATH || fail
171171

172172
# Install dependencies for GPU: ffnvcodec
173173
msg "Install the newest ffnvcodec."
@@ -176,13 +176,14 @@ git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git || fail
176176
cd nv-codec-headers || fail
177177
PATH="$BIN_PATH:$PATH" make -j$(nproc) || fail
178178
sudo make install
179-
sudo cp $BUILD_PATH/bin/vmaf $BIN_PATH || fail
180179

181180
# Install ffmpeg
182181
msg "Install ffmpeg 4.4."
183182
cd $SOURCE_PATH || fail
184183
wget -O- http://ffmpeg.org/releases/ffmpeg-4.4.tar.xz | tar xJ -C . || fail
185184
cd ffmpeg-4.4 || fail
185+
# Fix the bug caused by NVCC.
186+
wget -O- https://github.com/cainmagi/FFmpeg-Encoder-Decoder-for-Python/releases/download/deps-3.0.0/patch-ffmpeg_4_4.tar.xz | tar xJ -C . || fail
186187
PATH="$BIN_PATH:$PATH" PKG_CONFIG_PATH="$BUILD_PATH/lib/pkgconfig:$PKG_CONFIG_PATH" ./configure \
187188
--prefix="$BUILD_PATH" \
188189
--pkg-config-flags="--static" \
@@ -193,7 +194,9 @@ PATH="$BIN_PATH:$PATH" PKG_CONFIG_PATH="$BUILD_PATH/lib/pkgconfig:$PKG_CONFIG_PA
193194
--bindir="$BIN_PATH" \
194195
--enable-gpl \
195196
--enable-gnutls \
196-
--enable-cuda-sdk \
197+
--enable-cuda \
198+
--enable-cuda-nvcc \
199+
--enable-nvenc \
197200
--enable-libnpp \
198201
--enable-libaom \
199202
--enable-libass \

0 commit comments

Comments
 (0)