3

I recently installed ffmpeg version 0.8.5-4:0.8.5 on my Ubuntu Linux box.

When I execute "ffprobe -show_frames http://test.com/test.mp4" I get the following error:

Unrecognized option 'show_frames'

I have tried installed all sorts of ffmpeg dependent packages to fix this without any success.

Can someone help to resolve this error by telling me what I need to install exactly to fix this?

Thanks

user1526912
  • 15,818
  • 14
  • 57
  • 92

2 Answers2

12

You're using a crippled, fake version of "ffprobe" that originates from libav, not FFmpeg:

Ubuntu switched from FFmpeg to libav because the Debian/Ubuntu ffmpeg package maintainer is a libav developer. The intentional usage of the names "ffmpeg" and "ffprobe" for something not from FFmpeg was disappointing, and is misguiding to users and misrepresents the work of the FFmpeg developers. Also see Who can tell me the difference and relation between ffmpeg, libav, and avconv?

This bizarro "ffprobe" does not have the -show_frames option. You have three options:

All three methods will provide a real, working ffprobe. Use the static build if you're lazy.

Community
  • 1
  • 1
llogan
  • 121,796
  • 28
  • 232
  • 243
0

Uninstalled the current version of ffmpeg(This was a static build downloaded from the ffmpeg site: http://ffmpeg.gusari.org/static/32bit/

show_frames option was deprecated in this version.

Download and installed the latest version from:http://www.ffmpeg.org/releases/ffmpeg-1.1.3.tar.bz2

user1526912
  • 15,818
  • 14
  • 57
  • 92