Can someone recommend latest ffmpeg version/configure flags?

Forum for questions and support relating to the 1.26.x releases only.
Locked
McFuzz
Posts: 181
Joined: Tue Aug 28, 2012 7:03 am

Can someone recommend latest ffmpeg version/configure flags?

Post by McFuzz »

Pretty much as title says... I currently have 0.10.0 on Debian 6 with the following flags:

Code: Select all

./configure --enable-gpl --enable-shared --enable-pthreads --enable-libx264 --enable-libfaac --enable-nonfree --enable-x11grab --enable-version3

I got the above from one of the guides. But, if someone has a recommendation for a newer version + other/better flags to use, that'd be much appreciated.

Basically, I am trying to enable MPEG streaming, instead of JPEG, but so far I am having a plethora of failures...

Thanks!
Magic919
Posts: 1381
Joined: Wed Sep 18, 2013 6:56 am

Re: Can someone recommend latest ffmpeg version/configure fl

Post by Magic919 »

This is what I used to build a recent version.

./configure --prefix=/usr --libdir=/usr/lib --shlibdir=/usr/lib --mandir=/usr/share/man --enable-shared --cc=i686-pc-linux-gnu-gcc --cxx=i686-pc-linux-gnu-g++ --ar=i686-pc-linux-gnu-ar --optflags='-O2 -march=native -pipe -fomit-frame-pointer' --extra-cflags='-O2 -march=native -pipe -fomit-frame-pointer' --extra-cxxflags='-O2 -march=native -pipe -fomit-frame-pointer' --enable-static --enable-gpl --enable-version3 --enable-postproc --enable-avfilter --disable-stripping --disable-debug --disable-vaapi --disable-vdpau --disable-ffplay --enable-libmp3lame --enable-libvo-aacenc --enable-libvorbis --enable-libx264 --enable-libxvid --disable-indev=v4l2 --disable-indev=alsa --disable-indev=oss --disable-indev=jack --disable-outdev=alsa --disable-outdev=oss --disable-outdev=sdl --enable-pthreads --disable-amd3dnow --disable-amd3dnowext --disable-altivec --disable-avx --disable-vis --disable-neon --cpu=host --enable-hardcoded-tables
-
codabiz
Posts: 59
Joined: Sun Jan 04, 2009 10:16 am
Location: London, UK

Re: Can someone recommend latest ffmpeg version/configure fl

Post by codabiz »

This is my ffmpeg build + H264 on Ubuntu Server 12.04.3 32bit running on Pentium 4 2.8 HT:

Built on Oct 2 2013 22:04:55 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --enable-gpl --enable-libx264 --enable-nonfree --enable-version3 \
--extra-libs=-ldl --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib

libavutil 52. 46.100 / 52. 46.100
libavcodec 55. 33.101 / 55. 33.101
libavformat 55. 18.104 / 55. 18.104
libavdevice 55. 3.100 / 55. 3.100
libavfilter 3. 88.100 / 3. 88.100
libswscale 2. 5.100 / 2. 5.100
libswresample 0. 17.103 / 0. 17.103
libpostproc 52. 3.100 / 52. 3.100
McFuzz
Posts: 181
Joined: Tue Aug 28, 2012 7:03 am

Re: Can someone recommend latest ffmpeg version/configure fl

Post by McFuzz »

Thanks guys; I'll give it a shot :)
Locked