Skip to content

Instantly share code, notes, and snippets.

@kpping
Created December 11, 2018 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kpping/ddc2d816aadaf8fd12bf5c91f1f8f001 to your computer and use it in GitHub Desktop.
Save kpping/ddc2d816aadaf8fd12bf5c91f1f8f001 to your computer and use it in GitHub Desktop.
Speed up video
#!/usr/bin/env bash
FILE_IN="video.mp4" # in
FILE_OUT="3xfaster_video.mp4" # out
ffmpeg -i $FILE_IN -filter:v "setpts=0.33*PTS" $FILE_OUT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment