From f5b7ddaccfb77a77fe5b0d278cc19d077d8d9f21 Mon Sep 17 00:00:00 2001 From: Ayo Reis Date: Thu, 18 Sep 2025 21:15:59 +0100 Subject: [PATCH] Add frame rate to FFmpeg command --- index.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f68fa47..f96180f 100644 --- a/index.html +++ b/index.html @@ -58,6 +58,10 @@ list-style-position: inside; } + time { + font-style: italic; + } + a { color: inherit; } @@ -87,14 +91,15 @@
- +

(updated )

Speed up video in FFmpeg

-
ffmpeg -i input.mkv -vf "setpts=PTS/60" -an output.mp4
+
ffmpeg -i input.mkv -r 60 -vf "setpts=PTS/60" -an output.mp4
  • -i input.mkv input file
  • +
  • -r 60 frame rate
  • -vf "setpts=PTS/60" video filter, set presentation timespamp
  • -an no audio (unless you speed up audio too, the output's length will stay the same)
  • output.mp4 output file and format
  • -- 2.49.0