I cannot adjust a video using avconv or ffmpeg with Gamma correction. I use Debian Jessie, so I first suspected that avconv was incomplete, so following this question, I built ffmpeg myself.
Using this blog post, I assumed the following filter would be fine (to apply a Gamma of 0.5):
ffmpeg -i in.mp4 -vf mp=eq2=0.5:1:1:1:1:1:1:1 out.mp4
However, it just says
[AVFilterGraph @ 0x1faf6a0] No such filter: 'mp'
Error opening filters!
Has the filter been renamed? How do I apply a Gamma correction? So I looked at this documentation and it seems I should be using the eq filter instead. Try:
ffmpeg -i in.mp4 -vf eq=gamma=0.5 out.mp4
No success:
[AVFilterGraph @ 0x23466a0] No such filter: 'eq'
Error opening filters!