mirror of
https://github.com/MartinEesmaa/VVCEasy.git
synced 2025-06-05 21:59:20 +02:00
Improved build scripts
This commit is contained in:
@ -1,19 +1,82 @@
|
|||||||
echo Updating and upgrading MSYS2 packages... if system core update requires reboot this application, please run this script again after being updated.
|
echo Updating and upgrading MSYS2 packages... if system core update requires reboot this application, please run this script again after being updated.
|
||||||
pacman -Syu
|
pacman -Syu
|
||||||
echo Installing MSYS2 packages...
|
echo Installing MSYS2 packages...
|
||||||
pacman -S python nasm $MINGW_PACKAGE_PREFIX-{toolchain,cmake,autotools,meson,ninja}
|
pacman -Syu python nasm vim $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...
|
||||||
|
if [ ! -d buildffmpegwin ]; then
|
||||||
mkdir buildffmpegwin && cd buildffmpegwin
|
mkdir buildffmpegwin && cd buildffmpegwin
|
||||||
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC
|
else
|
||||||
|
cd buildffmpegwin
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d FFmpeg-FixVVC ]; then
|
||||||
|
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-VVC
|
||||||
|
else
|
||||||
|
git -C FFmpeg-VVC pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d vvenc ]; then
|
||||||
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
|
||||||
|
else
|
||||||
|
git -C vvenc pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d vvdec ]; then
|
||||||
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
|
||||||
|
else
|
||||||
|
git -C vvdec pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d fdk-aac ]; then
|
||||||
git clone --depth=1 https://github.com/mstorsjo/fdk-aac
|
git clone --depth=1 https://github.com/mstorsjo/fdk-aac
|
||||||
|
else
|
||||||
|
git -C fdk-aac pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d SDL ]; then
|
||||||
git clone --depth=1 https://github.com/libsdl-org/SDL
|
git clone --depth=1 https://github.com/libsdl-org/SDL
|
||||||
|
else
|
||||||
|
git -C SDL pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d libxml2 ]; then
|
||||||
git clone --depth=1 https://github.com/gnome/libxml2
|
git clone --depth=1 https://github.com/gnome/libxml2
|
||||||
|
else
|
||||||
|
git -C libxml2 pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d opus ]; then
|
||||||
git clone --depth=1 https://github.com/xiph/opus
|
git clone --depth=1 https://github.com/xiph/opus
|
||||||
|
else
|
||||||
|
git -C opus pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d libjxl ]; then
|
||||||
|
git clone --depth=1 https://github.com/libjxl/libjxl
|
||||||
|
sed -i 's/-lm/-lm -lstdc++/g' libjxl/lib/jxl/libjxl.pc.in libjxl/lib/threads/libjxl_threads.pc.in
|
||||||
|
git -C libjxl submodule update --init --recursive --depth 1 --recommend-shallow
|
||||||
|
else
|
||||||
|
git -C libjxl pull
|
||||||
|
git -C libjxl submodule update --init --recursive --depth 1 --recommend-shallow
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d dav1d ]; then
|
||||||
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/xiph/speex
|
else
|
||||||
|
git -C dav1d pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d codec2 ]; then
|
||||||
git clone --depth=1 https://github.com/drowe67/codec2
|
git clone --depth=1 https://github.com/drowe67/codec2
|
||||||
|
else
|
||||||
|
git -C codec2 pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d vmaf ]; then
|
||||||
|
git clone --depth=1 https://github.com/netflix/vmaf
|
||||||
|
else
|
||||||
|
git -C vmaf pull
|
||||||
|
fi
|
||||||
|
|
||||||
echo Starting to build fdk-aac:
|
echo Starting to build fdk-aac:
|
||||||
cd fdk-aac
|
cd fdk-aac
|
||||||
@ -35,13 +98,12 @@ cd opus
|
|||||||
autoreconf -if && CFLAGS="-O2 -D_FORTIFY_SOURCE=0" LDFLAGS="-flto -s" ./configure --enable-static --disable-shared --disable-tests --disable-extras --prefix=$MSYSTEM_PREFIX && make install -j $nproc
|
autoreconf -if && CFLAGS="-O2 -D_FORTIFY_SOURCE=0" LDFLAGS="-flto -s" ./configure --enable-static --disable-shared --disable-tests --disable-extras --prefix=$MSYSTEM_PREFIX && make install -j $nproc
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
echo Starting to build speex:
|
echo Starting to build libjxl:
|
||||||
cd speex
|
mkdir libjxl/build && cd libjxl/build && cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=OFF -DJPEGXL_ENABLE_BENCHMARK=OFF -DJPEGXL_ENABLE_PLUGINS=ON -DJPEGXL_ENABLE_MANPAGES=OFF -DJPEGXL_FORCE_SYSTEM_BROTLI=ON -DJPEGXL_FORCE_SYSTEM_GTEST=ON -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX .. && ninja install -j $nproc
|
||||||
autoreconf -if && ./configure --enable-static --disable-shared --prefix=$MSYSTEM_PREFIX && make install -j $nproc
|
cd ../../
|
||||||
cd ..
|
|
||||||
|
|
||||||
echo Starting to build dav1d:
|
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 -j $nproc
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
echo Starting to build codec2:
|
echo Starting to build codec2:
|
||||||
@ -53,12 +115,17 @@ mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREF
|
|||||||
cmake --build . -j $nproc --target install
|
cmake --build . -j $nproc --target install
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
echo Starting to build vvenc & vvdec...
|
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 -j $nproc
|
||||||
|
cd ../../../
|
||||||
|
|
||||||
|
echo Starting to build vvenc...
|
||||||
cd vvenc
|
cd vvenc
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX -DVVENC_ENABLE_LINK_TIME_OPT=OFF .. -G "MinGW Makefiles"
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX -DVVENC_ENABLE_LINK_TIME_OPT=OFF .. -G "MinGW Makefiles"
|
||||||
cmake --build . --target install -j $nproc
|
cmake --build . --target install -j $nproc
|
||||||
cd ../../
|
cd ../../
|
||||||
|
echo Starting to build vvdec...
|
||||||
cd vvdec
|
cd vvdec
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX -DVVDEC_ENABLE_LINK_TIME_OPT=OFF .. -G "MinGW Makefiles"
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX -DVVDEC_ENABLE_LINK_TIME_OPT=OFF .. -G "MinGW Makefiles"
|
||||||
@ -66,9 +133,9 @@ cmake --build . --target install -j $nproc
|
|||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
echo Starting configuring and making FFmpeg VVCEasy build...
|
echo Starting configuring and making FFmpeg VVCEasy build...
|
||||||
cd FFmpeg-FixVVC
|
cd FFmpeg-VVC
|
||||||
./configure --enable-libfdk-aac --enable-static --enable-libvvenc --enable-libvvdec --enable-pic \
|
./configure --enable-libfdk-aac --enable-static --enable-libvvenc --enable-libvvdec --enable-pic \
|
||||||
--enable-zlib --enable-libxml2 --enable-libdav1d --enable-libopus --enable-libcodec2 --enable-libspeex --extra-ldexeflags=-static \
|
--enable-zlib --enable-libxml2 --enable-libdav1d --enable-libopus --enable-libcodec2 --enable-libjxl --extra-ldexeflags=-static \
|
||||||
--pkg-config-flags=-static --disable-w32threads --enable-sdl2 && \
|
--pkg-config-flags=-static --disable-w32threads --enable-sdl2 && \
|
||||||
make -j
|
make -j
|
||||||
echo FFmpeg VVC version tools are now compiled, please see buildffmpegwin/FFmpeg folder.
|
echo FFmpeg VVC version tools are now compiled, please see buildffmpegwin/FFmpeg folder.
|
||||||
|
@ -2,37 +2,94 @@
|
|||||||
echo Building FFmpeg VVCEasy Linux version...
|
echo Building FFmpeg VVCEasy Linux version...
|
||||||
sudo apt update && sudo apt upgrade -y && \
|
sudo apt update && sudo apt upgrade -y && \
|
||||||
sudo apt install build-essential cmake nasm autoconf pkg-config \
|
sudo apt install build-essential cmake nasm autoconf pkg-config \
|
||||||
python3-setuptools ninja-build python3-pip libtool git wget -y && \
|
python3-setuptools ninja-build python3-pip libtool git wget xxd -y && \
|
||||||
sudo pip3 install meson && \
|
sudo pip3 install meson
|
||||||
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc && \
|
|
||||||
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec && \
|
if [ ! -d FFmpeg-FixVVC ]; then
|
||||||
git clone --depth=1 https://github.com/mstorsjo/fdk-aac && \
|
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-VVC
|
||||||
git clone --depth=1 https://github.com/libsdl-org/SDL && \
|
else
|
||||||
git clone --depth=1 https://github.com/gnome/libxml2 && \
|
git -C FFmpeg-VVC pull
|
||||||
git clone --depth=1 https://github.com/xiph/opus && \
|
fi
|
||||||
git clone --depth=1 https://code.videolan.org/videolan/dav1d && \
|
|
||||||
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC && \
|
if [ ! -d vvenc ]; then
|
||||||
git clone --depth=1 https://github.com/xiph/speex && \
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
|
||||||
cd vvenc && sudo make install-release install-prefix=/usr/local disable-lto=1 && \
|
else
|
||||||
|
git -C vvenc pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d vvdec ]; then
|
||||||
|
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
|
||||||
|
else
|
||||||
|
git -C vvdec pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d fdk-aac ]; then
|
||||||
|
git clone --depth=1 https://github.com/mstorsjo/fdk-aac
|
||||||
|
else
|
||||||
|
git -C fdk-aac pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d SDL ]; then
|
||||||
|
git clone --depth=1 https://github.com/libsdl-org/SDL
|
||||||
|
else
|
||||||
|
git -C SDL pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d libxml2 ]; then
|
||||||
|
git clone --depth=1 https://github.com/gnome/libxml2
|
||||||
|
else
|
||||||
|
git -C libxml2 pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d opus ]; then
|
||||||
|
git clone --depth=1 https://github.com/xiph/opus
|
||||||
|
else
|
||||||
|
git -C opus pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d libjxl ]; then
|
||||||
|
git clone --depth=1 https://github.com/libjxl/libjxl
|
||||||
|
sed -i 's/-lm/-lm -lstdc++/g' libjxl/lib/jxl/libjxl.pc.in libjxl/lib/threads/libjxl_threads.pc.in
|
||||||
|
git -C libjxl submodule update --init --recursive --depth 1 --recommend-shallow
|
||||||
|
else
|
||||||
|
git -C libjxl pull
|
||||||
|
git -C libjxl submodule update --init --recursive --depth 1 --recommend-shallow
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d dav1d ]; then
|
||||||
|
git clone --depth=1 https://code.videolan.org/videolan/dav1d
|
||||||
|
else
|
||||||
|
git -C dav1d pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d vmaf ]; then
|
||||||
|
git clone --depth=1 https://github.com/netflix/vmaf
|
||||||
|
else
|
||||||
|
git -C vmaf pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd vvenc && sudo make install-release install-prefix=$PREFIX disable-lto=1 && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd vvdec && sudo make install-release install-prefix=/usr/local disable-lto=1 && \
|
cd vvdec && sudo make install-release install-prefix=$PREFIX disable-lto=1 && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd fdk-aac && autoreconf -if && ./configure --prefix=/usr/local --enable-static --disable-shared && sudo make install -j $nproc && \
|
cd fdk-aac && autoreconf -if && ./configure --prefix=$PREFIX --enable-static --disable-shared && sudo make install -j $nproc && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd libxml2 && autoreconf -if && ./configure --prefix=/usr/local --enable-static --disable-shared && sudo make install -j $nproc && \
|
cd libxml2 && autoreconf -if && ./configure --prefix=$PREFIX --enable-static --disable-shared && sudo make install -j $nproc && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd opus && autoreconf -if && CFLAGS="-O2 -D_FORTIFY_SOURCE=0" LDFLAGS="-flto -s" ./configure --prefix=/usr/local --enable-static --disable-shared && sudo make install -j $nproc && \
|
cd opus && autoreconf -if && CFLAGS="-O2 -D_FORTIFY_SOURCE=0" LDFLAGS="-flto -s" ./configure --prefix=$PREFIX --enable-static --disable-shared && sudo make install -j $nproc && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd speex && autoreconf -if && ./configure --prefix=/usr/local --enable-static --disable-shared && sudo make install -j $nproc && \
|
mkdir libjxl/build && cd libjxl/build && cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=OFF -DJPEGXL_ENABLE_BENCHMARK=OFF -DJPEGXL_ENABLE_PLUGINS=ON -DJPEGXL_ENABLE_MANPAGES=OFF -DJPEGXL_FORCE_SYSTEM_BROTLI=ON -DJPEGXL_FORCE_SYSTEM_GTEST=ON -DCMAKE_INSTALL_PREFIX=$PREFIX .. -G Ninja && sudo ninja install -j $nproc && \
|
||||||
cd .. && \
|
|
||||||
cd SDL && mkdir build && cd build && cmake -DCMAKE_EXE_LINKER_FLAGS="-static" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local .. && sudo make install -j $nproc && \
|
|
||||||
cd ../../ && \
|
cd ../../ && \
|
||||||
mkdir dav1d/build && cd dav1d/build && meson -Denable_docs=false -Ddefault_library=static -Dprefix=/usr/local .. && sudo ninja install && \
|
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=$PREFIX .. && sudo ninja install -j $nproc && \
|
||||||
|
cd ../../../ && \
|
||||||
|
cd SDL && mkdir build && cd build && cmake -DCMAKE_EXE_LINKER_FLAGS="-static" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX .. && sudo make install -j $nproc && \
|
||||||
cd ../../ && \
|
cd ../../ && \
|
||||||
cd FFmpeg-FixVVC && \
|
mkdir dav1d/build && cd dav1d/build && meson -Denable_docs=false -Ddefault_library=static -Dprefix=$PREFIX .. && sudo ninja install -j $nproc && \
|
||||||
|
cd ../../ && \
|
||||||
|
cd FFmpeg-VVC && \
|
||||||
./configure --enable-static --pkg-config-flags="--static" --extra-ldexeflags="-static" \
|
./configure --enable-static --pkg-config-flags="--static" --extra-ldexeflags="-static" \
|
||||||
--enable-libfdk-aac --enable-libvvenc --enable-libvvdec --enable-pic \
|
--enable-libfdk-aac --enable-libvvenc --enable-libvvdec --enable-pic \
|
||||||
--enable-libxml2 --enable-libopus --enable-libdav1d --enable-libspeex --enable-sdl2 && \
|
--enable-libxml2 --enable-libopus --enable-libdav1d --enable-libjxl --enable-sdl2 && \
|
||||||
make -j
|
make -j
|
||||||
echo You're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe.
|
echo You're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe.
|
||||||
echo - Martin Eesmaa
|
echo - Martin Eesmaa
|
||||||
|
Reference in New Issue
Block a user