2022-05-15 06:27:06 +02:00
|
|
|
#!/bin/bash
|
|
|
|
sudo apt update && sudo apt upgrade -y
|
|
|
|
echo Downloading OpenVVC...
|
|
|
|
cd ~/Downloads
|
2022-06-18 13:05:31 +02:00
|
|
|
mkdir OpenVVCbuild && cd OpenVVCbuild
|
|
|
|
git clone https://github.com/OpenVVC/OpenVVC
|
2022-05-15 06:27:06 +02:00
|
|
|
echo Configuring, making and installing of OpenVVC on your computer...
|
|
|
|
cd OpenVVC
|
2022-05-22 14:30:20 +02:00
|
|
|
./configure && make && sudo make install
|
2022-05-15 06:27:06 +02:00
|
|
|
cd ../
|
|
|
|
echo Downloading FFmpeg with OpenVVC support...
|
2022-06-18 13:05:31 +02:00
|
|
|
git clone --depth=1 https://github.com/tbiat/FFmpeg
|
2022-05-15 06:27:06 +02:00
|
|
|
cd FFmpeg
|
|
|
|
echo Configuring and making of FFmpeg with OpenVVC support...
|
2022-06-18 13:05:31 +02:00
|
|
|
./configure --enable-libopenvvc && make -j
|
2022-05-15 06:27:06 +02:00
|
|
|
echo Once you typed code, you're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe.
|
|
|
|
echo - Martin Eesmaa
|