removed vmaf in ffmpeg windows script
This commit is contained in:
parent
694b7e6960
commit
a3e657bc79
|
@ -2,7 +2,7 @@ echo Updating & upgrading MSYS2 packages... (if system core update requires rebo
|
||||||
pacman -Syu
|
pacman -Syu
|
||||||
pacman -Su
|
pacman -Su
|
||||||
echo Installing MSYS2 packages...
|
echo Installing MSYS2 packages...
|
||||||
pacman -S python nasm vim $MINGW_PACKAGE_PREFIX-{toolchain,cmake,autotools,meson,ninja}
|
pacman -S python nasm $MINGW_PACKAGE_PREFIX-{toolchain,cmake,autotools,meson,ninja}
|
||||||
echo Starting process of FFmpeg build with libvvenc and libvvdec...
|
echo Starting process of FFmpeg build with libvvenc and libvvdec...
|
||||||
mkdir buildffmpegwin && cd buildffmpegwin
|
mkdir buildffmpegwin && cd buildffmpegwin
|
||||||
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC
|
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC
|
||||||
|
@ -13,7 +13,6 @@ git clone --depth=1 https://github.com/libsdl-org/SDL
|
||||||
git clone --depth=1 https://github.com/gnome/libxml2
|
git clone --depth=1 https://github.com/gnome/libxml2
|
||||||
git clone --depth=1 https://github.com/xiph/opus
|
git clone --depth=1 https://github.com/xiph/opus
|
||||||
git clone --depth=1 https://code.videolan.org/videolan/dav1d
|
git clone --depth=1 https://code.videolan.org/videolan/dav1d
|
||||||
git clone --depth=1 https://github.com/Netflix/vmaf
|
|
||||||
|
|
||||||
echo Starting to build fdk-aac:
|
echo Starting to build fdk-aac:
|
||||||
cd fdk-aac
|
cd fdk-aac
|
||||||
|
@ -39,10 +38,6 @@ echo Starting to build dav1d:
|
||||||
mkdir dav1d/build && cd dav1d/build && meson -Denable_docs=false -Ddefault_library=static -Dprefix=$MSYSTEM_PREFIX .. && ninja install
|
mkdir dav1d/build && cd dav1d/build && meson -Denable_docs=false -Ddefault_library=static -Dprefix=$MSYSTEM_PREFIX .. && ninja install
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
echo Starting to build vmaf to apply calculate VVC video references from original video:
|
|
||||||
mkdir vmaf/libvmaf/build && cd vmaf/libvmaf/build && CFLAGS="-msse2 -mfpmath=sse -mstackrealign" meson -Denable_docs=false -Ddefault_library=static -Denable_float=true -Dbuilt_in_models=true -Dprefix=$MSYSTEM_PREFIX .. && ninja install
|
|
||||||
cd ../../../
|
|
||||||
|
|
||||||
echo Starting to build vvenc & vvdec...
|
echo Starting to build vvenc & vvdec...
|
||||||
cd vvenc
|
cd vvenc
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
|
|
Loading…
Reference in New Issue