2022-05-15 06:16:53 +02: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
|
|
|
|
make release && make install
|
|
|
|
cd ../
|
|
|
|
echo Downloading FFmpeg with VVC support
|
|
|
|
git clone https://github.com/lehmann-c/FFmpeg.git
|
|
|
|
cd FFmpeg
|
2022-05-18 11:53:47 +02:00
|
|
|
echo One more thing to do is type of three codes to finish for:
|
2022-05-15 06:16:53 +02:00
|
|
|
echo export LD_LIBRARY_PATH=~/Downloads/vvdec/install/lib
|
2022-05-18 11:53:47 +02:00
|
|
|
echo export PKG_CONFIG_PATH=~/Downloads/vvdec/install/lib/pkgconfig
|
|
|
|
echo ./configure --enable-libvvdec --enable-pic --enable-openssl --enable-libxml2 && make -j
|
2022-05-15 06:16:53 +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
|