Advertisement
Guest User

ffmpeg with libfdk-aac

a guest
Aug 18th, 2012
3,141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.85 KB | None | 0 0
  1. First step on window: install Mingw/msys
  2.  
  3. I use xhmikosr's version for example : http://xhmikosr.1f0.de/tools/
  4.  
  5. After that run msys.bat for Msys . now you can start building ffmpeg.
  6.  
  7. example you can try :
  8.  
  9. download and decompress (in Msys/home/your_name directory) http://sourceforge.net/projects/opencore-amr/files/fdk-aac/
  10.  
  11. and under Msys :
  12. git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
  13.  
  14. cd fdk-aac-0.1.0
  15. ./configure --enable-shared=no
  16. make -j4
  17. make install
  18. cd ..
  19.  
  20. cd ffmpeg
  21. ./configure --enable-libfdk-aac --enable-gpl --enable-version3 --enable-nonfree --enable-w32threads --enable-memalign-hack
  22. make -j4
  23.  
  24. you have ffmpeg binaries in ffmpeg directory.
  25. If you want others libs look at http://ffmpeg.zeranoe.com/builds/ for source files and do the same ( ./configure && make && make install )
  26. and try ./configure --help to see the options.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement