Ticket #843 (closed defect: invalid)
ffmpeg fails to properly create avi from jpegs when frame rate <= 3
| Reported by: | markgilmore | Owned by: | |
|---|---|---|---|
| Priority: | important | Component: | FFmpeg |
| Version: | unspecified | Keywords: | avi jpegs |
| Cc: | Blocked By: | ||
| Blocking: | Reproduced by developer: | no | |
| Analyzed by developer: | no |
Description
When the frame rate (# of jpegs per sec) is <= 3,
the resulting avi only shows the 1st image.
The only work-around is to create extra/redundant jpegs,
so as to make the rate > 3.
I have spent MANY hours trying infinite combos of every frame-rate-related argument.
my typical (failing) command (for 2 frames/sec):
ffmpeg -y -r 0.5 -i "%06d.jpg" x.avi
I am using latest vsn.
It happens in windows and linux.
My head aches from banging it against this wall.
Am i missing something ???
Thanks
Change History
Note: See
TracTickets for help on using
tickets.



correction to above cmd: ("-r 2"):
ffmpeg -y -r 2 -i "%06d.jpg" x.avi