mirror of
https://github.com/MartinEesmaa/VVCEasy.git
synced 2025-01-22 21:19:53 +01:00
docs: build FDK-AAC from source & point to correct pkgconfig dir
Your previous script didn't work for me, so here is one that should work on macOS. The errors were that libvvdec couldn't be found (fixed with export line) & that libfdk_aac couldn't be found (fixed with export line + building from source)
This commit is contained in:
parent
a95ffd377a
commit
f0e9e4327c
@ -168,9 +168,10 @@ Homebrew
|
||||
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/vvdec
|
||||
git clone https://github.com/mstorsjo/fdk-aac
|
||||
cd vvenc && mkdir build && cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
|
||||
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 ..
|
||||
sudo cmake --build . --target install -j $nproc
|
||||
cd ../../
|
||||
cd fdk-aac && ./autogen.sh && ./configure
|
||||
make -j
|
||||
sudo make install
|
||||
cd ../
|
||||
git clone --depth=1 https://github.com/MartinEesmaa/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
|
||||
make -j
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user