LoginSignup
1
1

More than 5 years have passed since last update.

ffmpegをOSXでビルドする

Posted at

ffmpegをOSX(Yosemite)にインストールする場合brewで直接入れるのが簡単ですが、以下はソースからインストールする方法になります。

brew install x264 automake autoconf libtool pkg-config yasm
wget http://ffmpeg.org/releases/ffmpeg-2.6.tar.bz2
tar xjf ffmpeg-2.6.tar.bz2
cd ffmpeg
./configure --enable-libx264 --enable-gpl
make
sudo make install
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1