I need to stretch the video to fit a specific time.
Is it possible with ffmpeg or do you guys know any other tool that could do the the work?
Slowing down video:
ffmpeg -i input.mkv -filter:v "setpts=2.0*PTS" output.mkv
Speeding up video:
ffmpeg -i input.mkv -r 16 -filter:v "setpts=0.25*PTS" output.mkv
Speeding up audio:
ffmpeg -i input.mkv -filter:a "atempo=2.0" -vn output.mkv