codef0rmer
codef0rmer

Reputation: 10530

How do I get rid 'avformat.h' no such file or directory error while installing Video-ffmpeg?

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

Answers (1)

Not_a_Golfer
Not_a_Golfer

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

Related Questions