Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

ffmpeg - How to speed up a video in order to shorten its length and embed a timestamp to represent time as it was recorded?

I have a video recorded at 5 fps that I want to speed up to 30 fps to shorten it. That is simple enough as:

ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS" output.mp4

But when I try to add a timestamp to it with:

ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS, drawtext=text='%{pts:localtime:1610043985:%Y-%m-%d %H\\:%M\\:%S.}%{eif:mod(n,30):d}'" output.mp4

The timestamp does not longer represents the time as it was recorded (it should run faster now)

What would be the simplest way to achieve this on a single pass?

question from:https://stackoverflow.com/questions/65618190/how-to-speed-up-a-video-in-order-to-shorten-its-length-and-embed-a-timestamp-to

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Put the drawtext filter first and then the setpts filter:

ffmpeg -i input.mp4 -r 30 -vf "drawtext=..., setpts=..." output.mp4

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...