Opened 9 years ago

Closed 9 years ago

#4784 closed defect (fixed)

Documentation bug: fbdev example incorrect

Reported by: Casey Rodarmor Owned by:
Priority: minor Component: documentation
Version: git-master Keywords:
Cc: Blocked By:
Blocking: Reproduced by developer: yes
Analyzed by developer: no

Description

This is on https://www.ffmpeg.org/ffmpeg-devices.html

The current page gives this command for taking a screenshot using the fbdev input device:

ffmpeg -f fbdev -frames:v 1 -r 1 -i /dev/fb0 screenshot.jpeg

This fails, since the -frames:v option is in the wrong place. I think the following is the right command:

ffmpeg -f fbdev -r 1 -i /dev/fb0 -frames:v 1 screenshot.jpg

Change History (2)

comment:1 by Carl Eugen Hoyos, 9 years ago

Component: undetermineddocumentation
Priority: normalminor
Reproduced by developer: set
Status: newopen
Version: unspecifiedgit-master

comment:2 by llogan, 9 years ago

Resolution: fixed
Status: openclosed

Fixed in 5d410a1db2bfc88dbf4410f7a1a43dd81cb04333. Thanks for the report.

Note: See TracTickets for help on using tickets.