Speed up video in FFmpeg
ffmpeg -i input.mkv -vf "setpts=PTS/60" -an output.mp4
-i input.mkv
input file-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