Merge branch 'patch-1' of https://github.com/gianni-rosato/VVCEasy into gianni-rosato-patch-1
This commit is contained in:
commit
5852ee4d9b
10
FFMPEGVVC.md
10
FFMPEGVVC.md
|
@ -168,9 +168,10 @@ Homebrew
|
||||||
Code to build FFmpeg VVC version:
|
Code to build FFmpeg VVC version:
|
||||||
|
|
||||||
```
|
```
|
||||||
brew install libxml2 ffmpeg fdk-aac nasm
|
brew install libxml2 ffmpeg nasm
|
||||||
git clone https://github.com/fraunhoferhhi/vvenc
|
git clone https://github.com/fraunhoferhhi/vvenc
|
||||||
git clone https://github.com/fraunhoferhhi/vvdec
|
git clone https://github.com/fraunhoferhhi/vvdec
|
||||||
|
git clone https://github.com/mstorsjo/fdk-aac
|
||||||
cd vvenc && mkdir build && cd build
|
cd vvenc && mkdir build && cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
|
||||||
sudo cmake --build . --target install -j $nproc
|
sudo cmake --build . --target install -j $nproc
|
||||||
|
@ -179,8 +180,13 @@ cd vvdec && mkdir build && cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
|
||||||
sudo cmake --build . --target install -j $nproc
|
sudo cmake --build . --target install -j $nproc
|
||||||
cd ../../
|
cd ../../
|
||||||
|
cd fdk-aac && ./autogen.sh && ./configure
|
||||||
|
make -j
|
||||||
|
sudo make install
|
||||||
|
cd ../
|
||||||
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC
|
git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC
|
||||||
cd FFmpeg-FixVVC
|
cd FFmpeg-FixVVC
|
||||||
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
|
||||||
./configure --enable-libfdk-aac --enable-libvvenc --enable-libvvdec --enable-static --enable-pic --enable-libxml2 --pkg-config-flags="--static" --enable-sdl2
|
./configure --enable-libfdk-aac --enable-libvvenc --enable-libvvdec --enable-static --enable-pic --enable-libxml2 --pkg-config-flags="--static" --enable-sdl2
|
||||||
make -j
|
make -j
|
||||||
```
|
```
|
||||||
|
@ -220,4 +226,4 @@ AC4 decoder programmer to FFmpeg: [@richardpl](https://github.com/richardpl) (Pa
|
||||||
|
|
||||||
AC4 support in mp4 container: [@AUGxhub](https://github.com/AUGxhub) Repository: https://github.com/AUGxhub/FFmpeg/tree/patch-1
|
AC4 support in mp4 container: [@AUGxhub](https://github.com/AUGxhub) Repository: https://github.com/AUGxhub/FFmpeg/tree/patch-1
|
||||||
|
|
||||||
- Martin Eesmaa
|
- Martin Eesmaa
|
||||||
|
|
Loading…
Reference in New Issue