2022-05-15 14:16:53 +10:00
|
|
|
#!/bin/bash
|
|
|
|
sudo apt update && sudo apt upgrade -y
|
|
|
|
sudo apt install openssl libxml2 /y
|
|
|
|
echo Downloading libvvdec...
|
|
|
|
cd ~/Downloads
|
|
|
|
git clone https://github.com/fraunhoferhhi/vvdec.git
|
|
|
|
cd vvdec
|
2022-05-20 19:17:53 +10:00
|
|
|
make install install-prefix=/usr/local
|
2022-05-15 14:16:53 +10:00
|
|
|
cd ../
|
|
|
|
echo Downloading FFmpeg with VVC support
|
|
|
|
git clone https://github.com/lehmann-c/FFmpeg.git
|
|
|
|
cd FFmpeg
|
2022-05-20 19:17:53 +10:00
|
|
|
./configure --enable-libvvdec --enable-pic --enable-openssl --enable-libxml2 && make -j
|
|
|
|
echo You're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe.
|
2022-05-15 14:16:53 +10:00
|
|
|
echo - Martin Eesmaa
|