TracNav
- Home
- Research Overview
- MPhil Information
Research Projects
- Wireless Comms
- Bat System
- Broadband Phone
Visual tags
- Sentient Vehicles
- Task Assignment
- NLMaP
- Computing for the Future of the Planet
- SESAME
- Active Floor
- Open-Source CSK Energy
Development Info
DTG Local Pages
- Cambridge Weather
- Contact Details
Installing libavcodec
This library is often statically linked (e.g. by mplayer or ffmpeg). SuSE doesn't contain it as a shared library in an rpm so you need to build from source
- Download the source from: http://ffmpeg.sourceforge.net/download.php
- Untar and run configure
./configure --prefix=/opt/ffmpeg --enable-shared
- Run make and make install
make && make install
- Add the following to your configure invocation for programs linking against avcodec
CPPFLAGS="-I/opt/ffmpeg/include" LDFLAGS="-L/opt/ffmpeg/lib"
