added git depths and change sudo some commands

This commit is contained in:
Martin Eesmaa 2022-08-08 03:16:30 +00:00 committed by GitHub
parent 02ab4f0dd4
commit 8beb0749b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -1,20 +1,20 @@
#!/bin/bash #!/bin/bash
sudo apt update && sudo apt upgrade -y sudo apt update && sudo apt upgrade -y
sudo apt install libxml2 libsdl2-dev libx264-dev libx265-dev libvpx-dev libopus-dev -y sudo apt install libxml2 libsdl2-dev libx264-dev libx265-dev libvpx-dev libopus-dev cmake build-essential -y
echo Downloading libvvdec... echo Downloading libvvdec...
cd ~/Downloads cd ~/Downloads
mkdir buildforlinux mkdir buildforlinux
cd buildforlinux cd buildforlinux
git clone https://github.com/fraunhoferhhi/vvenc git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
git clone https://github.com/fraunhoferhhi/vvdec git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
cd vvenc cd vvenc
make install install-prefix=/usr/local sudo make install
cd ../ cd ../
cd vvdec cd vvdec
make install install-prefix=/usr/local sudo make install
cd ../ cd ../
echo Downloading FFmpeg with VVC support echo Downloading FFmpeg with VVC support
git clone https://github.com/tbiat/FFmpeg git clone --depth=10 https://github.com/tbiat/FFmpeg
cd FFmpeg cd FFmpeg
./configure --enable-libvvenc --enable-libvvdec --enable-pic --enable-libxml2 --enable-libx264 --enable-libx265 --enable-libvpx --enable-libopus ./configure --enable-libvvenc --enable-libvvdec --enable-pic --enable-libxml2 --enable-libx264 --enable-libx265 --enable-libvpx --enable-libopus
make -j make -j