From 96f330513ac36b8bcd259e9cc2f63d63b257317d Mon Sep 17 00:00:00 2001 From: Martin Eesmaa <88035011+MartinEesmaa@users.noreply.github.com> Date: Sat, 18 Jun 2022 20:58:06 +1000 Subject: [PATCH] added big changes --- libvvdecffmpeg.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/libvvdecffmpeg.sh b/libvvdecffmpeg.sh index 538b549..b17fa7f 100644 --- a/libvvdecffmpeg.sh +++ b/libvvdecffmpeg.sh @@ -1,15 +1,22 @@ #!/bin/bash sudo apt update && sudo apt upgrade -y -sudo apt install libxml2 libsdl2-dev libx264-dev libx265-dev libvpx-dev -y +sudo apt install libxml2 libsdl2-dev libx264-dev libx265-dev libvpx-dev libopus-dev -y echo Downloading libvvdec... cd ~/Downloads -git clone https://github.com/fraunhoferhhi/vvdec.git +mkdir buildforlinux +cd buildforlinux +git clone https://github.com/fraunhoferhhi/vvenc +git clone https://github.com/fraunhoferhhi/vvdec +cd vvenc +make install install-prefix=/usr/local +cd ../ cd vvdec make install install-prefix=/usr/local cd ../ echo Downloading FFmpeg with VVC support -git clone https://github.com/lehmann-c/FFmpeg.git +git clone https://github.com/tbiat/FFmpeg cd FFmpeg -./configure --enable-libvvdec --enable-pic --enable-libxml2 --enable-libx264 --enable-libx265 --enable-libvpx && make -j +./configure --enable-libvvenc --enable-libvvdec --enable-pic --enable-libxml2 --enable-libx264 --enable-libx265 --enable-libvpx --enable-libopus +make -j echo You're ready to preview VVC, view VVC information or convert from VVC using ffmpeg, ffplay and ffprobe. echo - Martin Eesmaa