You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 24, 2026. It is now read-only.
techburgher edited this page Jan 6, 2015
·
2 revisions
Building ffmpeg
The following commands build a stripped down version of ffmpeg containing only codec and filters required by pianobar. Run them from within the ffmpeg source directory.
./configure --enable-shared --disable-everything --enable-demuxer=mov --enable-decoder=aac \
--enable-protocol=http --enable-filter=volume --enable-filter=aformat \
--enable-filter=aresample --disable-programs --disable-doc
make
make install
NOTE: If you are compiling ffmpeg for use with Pandora One (enhanced audio), then you additionally need to add the --enable-demuxer=mp3 --enable-decoder=mp3 configuration options when running ./configure.