views:

19

answers:

1

I installed FFMPEG using apt-get. It comes by default compiled with some options:

configuration: --enable-gpl --enable-pp --enable-swscaler --enable-pthreads
      --enable-libvorbis --enable-libtheora --enable-libogg --enable-libgsm
      --enable-dc1394 --disable-debug --enable-shared --prefix=/usr

How can I execute it and add more options without recompiling it? I'm looking for a way to execute including the option: -enable libspeex1.

+3  A: 

You don't. Changing those options requires recompiling.

Matthew Flaschen
got it, thanks!
fast-dev