Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save heavyengineer/2ec7c771bd4dcff8dbc4fa33b64fc894 to your computer and use it in GitHub Desktop.
Save heavyengineer/2ec7c771bd4dcff8dbc4fa33b64fc894 to your computer and use it in GitHub Desktop.
ffmpeg gopro 7 wide angle footage with lens correction filter
#!/bin/bash
lens="k2=0.006:k1=-0.18"
for f in *.MP4
do
ffmpeg -i ${f} -vf lenscorrection=${lens} ${f}.mp4
done
@heavyengineer
Copy link
Author

This one doesnt work so well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment