2022-05-15 14:27:06 +10:00
|
|
|
#!/bin/bash
|
|
|
|
sudo apt update && sudo apt upgrade -y
|
|
|
|
echo Downloading OpenVVC...
|
|
|
|
cd ~/Downloads
|
|
|
|
mkdir OpenVVC && cd OpenVVC
|
|
|
|
git clone https://github.com/OpenVVC/OpenVVC.git
|
|
|
|
echo Configuring, making and installing of OpenVVC on your computer...
|
|
|
|
cd OpenVVC
|
2022-05-22 22:30:20 +10:00
|
|
|
./configure && make && sudo make install
|
2022-05-15 14:27:06 +10:00
|
|
|
cd ../
|
|
|
|
echo Downloading FFmpeg with OpenVVC support...
|
|
|
|
git clone https://github.com/OpenVVC/FFmpeg.git
|
|
|
|
cd FFmpeg
|
|
|
|
echo Configuring and making of FFmpeg with OpenVVC support...
|
2022-05-18 19:55:40 +10:00
|
|
|
echo One more thing to do is type code to finish it:
|
2022-05-15 14:27:06 +10:00
|
|
|
echo export LD_LIBRARY_PATH=~/Downloads/OpenVVC/OpenVVC/install/lib
|
2022-05-18 19:55:40 +10:00
|
|
|
echo export PKG_CONFIG_PATH=~/Downloads/OpenVVC/OpenVVC/install/lib/pkgconfig
|
2022-05-22 22:30:20 +10:00
|
|
|
echo ./configure && make -j
|
2022-05-15 14:27:06 +10: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
|