I have used Jack Giffin's JavaScript code from here (3rd answer) to generate an ffmpeg command to speed up a video, with the audio, by 8x.
How do I speed up a video by 60X in ffmpeg?
However, my original video is 30fps. Is there a way to get an output video with 8x speed but at 60fps, so that I'm making use of some frames that would otherwise be discarded?
My current command line is:
ffmpeg -i input.mp4 -filter:v "setpts=PTS/8" -filter:a "atempo=2,atempo=2,atempo=2" output.mp4