Forrest logo
back to the ffmpeg tool

ffmpeg:ai:0ac19

使用ffmpeg将视频的pts扩大5倍
$ ffmpeg -i input.mp4 -vf "setpts=5*PTS" output.mp4
try on your machine

This command uses ffmpeg to scale the presentation timestamp (PTS) of the input video by a factor of 5, effectively slowing down the playback speed of the video by 5 times.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • 使用ffmpeg将视频的pts扩大5倍?
back to the ffmpeg tool