Skip to content

Instantly share code, notes, and snippets.

@dargmuesli
Created September 12, 2017 22:38
Show Gist options
  • Save dargmuesli/182ce31dcb123eaeb262b68d4d83bd64 to your computer and use it in GitHub Desktop.
Save dargmuesli/182ce31dcb123eaeb262b68d4d83bd64 to your computer and use it in GitHub Desktop.
Variable frame rate fix for Geforce Experience's ShadowPlay recordings.
for %%i in (*.mp4) do (
ffmpeg -i "%%i" -c:v libx264 -preset ultrafast -crf 15 -c:a copy "%%~ni_ffmpeg.mp4"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment