mirror of
https://github.com/MartinEesmaa/VVCEasy.git
synced 2025-02-15 03:00:50 +01:00
added git depths and change sudo some commands
This commit is contained in:
parent
02ab4f0dd4
commit
8beb0749b1
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user