- pkg-config
- freetype2
- fribidi
- libass
- x264
brew insatll pkg-config
https://download.savannah.gnu.org/releases/freetype/
# tar xf freetype-2.10.0.tar.gz
# cd freetype-2.10.0
# ./configure
# make
# make insatll
https://github.com/fribidi/fribidi/releases
# git clone https://github.com/fribidi/fribidi.git
# cd fribidi
# ./configure
# make
# make insatll
https://github.com/libass/libass
# git clone https://github.com/libass/libass.git
# cd libass
# ./configure
# make
# make insatll
https://code.videolan.org/videolan/x264
# git clone https://code.videolan.org/videolan/x264.git
# cd x264
# ./configure --disable-asm --enable-shared --enable-static
# make
# make install
https://ffmpeg.org/download.html
# tar xf ffmpeg-4.1.4.tar.bz2
# cd ffmpeg-4.1.4
# ./configure --enable-libass --disable-x86asm --enable-libx264 --enable-encoder=libx264 --enable-gpl
# make
# make install