Opened 16 months ago

Last modified 15 months ago

#10156 new defect

The "framerate" video filter badworking with duplicates frames in slideshow

Reported by: Alex Natalsson Owned by:
Priority: normal Component: avfilter
Version: unspecified Keywords:
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

I am making a slideshow.
I connecting the photos to video with:
$ffmpeg -r 1 -pattern_type glob -i '/tmp/temp/*.jpg' 1047.JPG_slide.mp4

For smoothing change photos I try to use video filter "framerate":
$ffmpeg -threads 1 -i 1047.JPG_slide.mp4 -vf framerate='fps=30' 1047.JPG_slide_framerate.mp4

And this working almost fine.
But when I creates for increasing duration duplicate photos the smoothing translation don't working and appears sometimes only.
$ffmpeg -r 1 -pattern_type glob -i '/tmp/temp/*.jpg' 1047.JPG_with_duplicates_slide.mp4
$ffmpeg -threads 1 -i 1047.JPG_with_duplicates_slide.mp4 -vf framerate='fps=30' 1047.JPG_with_duplicates_slide_framerate.mp4

May be this is a bug?

Attachments (1)

framerate.log (257.8 KB ) - added by Alex Natalsson 16 months ago.

Download all attachments as: .zip

Change History (3)

by Alex Natalsson, 16 months ago

Attachment: framerate.log added

comment:1 by Elon Musk, 16 months ago

use -framerate 1 instead of -r 1

in reply to:  1 comment:2 by Alex Natalsson, 15 months ago

Replying to Elon Musk:

use -framerate 1 instead of -r 1

O very big thanks for reply, but still not working after.

Note: See TracTickets for help on using tickets.