added big changes of openvvc shell build

This commit is contained in:
Martin Eesmaa 2022-06-18 21:05:31 +10:00 committed by GitHub
parent 96f330513a
commit dd650bc9ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -2,19 +2,16 @@
sudo apt update && sudo apt upgrade -y sudo apt update && sudo apt upgrade -y
echo Downloading OpenVVC... echo Downloading OpenVVC...
cd ~/Downloads cd ~/Downloads
mkdir OpenVVC && cd OpenVVC mkdir OpenVVCbuild && cd OpenVVCbuild
git clone https://github.com/OpenVVC/OpenVVC.git git clone https://github.com/OpenVVC/OpenVVC
echo Configuring, making and installing of OpenVVC on your computer... echo Configuring, making and installing of OpenVVC on your computer...
cd OpenVVC cd OpenVVC
./configure && make && sudo make install ./configure && make && sudo make install
cd ../ cd ../
echo Downloading FFmpeg with OpenVVC support... echo Downloading FFmpeg with OpenVVC support...
git clone https://github.com/tbiat/FFmpeg git clone --depth=1 https://github.com/tbiat/FFmpeg
cd FFmpeg cd FFmpeg
echo Configuring and making of FFmpeg with OpenVVC support... echo Configuring and making of FFmpeg with OpenVVC support...
echo One more thing to do is type code to finish it: ./configure --enable-libopenvvc && make -j
echo export LD_LIBRARY_PATH=~/Downloads/OpenVVC/OpenVVC/install/lib
echo export PKG_CONFIG_PATH=~/Downloads/OpenVVC/OpenVVC/install/lib/pkgconfig
echo ./configure && make -j
echo Once you typed code, you're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe. 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 echo - Martin Eesmaa