0

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.

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
oscarm
  • 2,630
  • 6
  • 41
  • 74
  • 1
    This is a duplicate of your [previous question](http://stackoverflow.com/questions/3877259/add-speex-code-support-to-ffmpeg). Also, you should say what OS and version you're using. – Matthew Flaschen Oct 06 '10 at 23:32
  • not really the same question. I'm asking here how to execute FFMPEG with different option without recompiling. – oscarm Oct 06 '10 at 23:44

1 Answers1

3

You don't. Changing those options requires recompiling.

Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539