Opened 8 years ago
Closed 8 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 , 8 years ago
Component: | undetermined → documentation |
---|---|
Priority: | normal → minor |
Reproduced by developer: | set |
Status: | new → open |
Version: | unspecified → git-master |
comment:2 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | open → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in 5d410a1db2bfc88dbf4410f7a1a43dd81cb04333. Thanks for the report.