Reputation: 10530
I've been trying to install Video-ffmpeg but sudo make
shows this error, FFmpeg.xs:7:22: fatal error: avformat.h: No such file or directory. compilation terminated.
I've libavformat53 installed on my m/c. Is there something I've to install?
Upvotes: 0
Views: 9370
Reputation: 49187
you need the headers of libavformat, which in ubuntu/debian are called libavformat-dev.
aptitude search libavformat
sudo aptitude reinstall libavformat53 libavformat-dev libavcodec53
Upvotes: 1