Skip to content

Instantly share code, notes, and snippets.

@mailinglists35
Forked from oeon/HowToStripAndFlip.md
Last active January 5, 2018 11:23
Show Gist options
  • Save mailinglists35/d4b46796548e121a066e844bc8699233 to your computer and use it in GitHub Desktop.
Save mailinglists35/d4b46796548e121a066e844bc8699233 to your computer and use it in GitHub Desktop.
How to remove GPS EXIF from iPhone .mov video
*say that you left your Location turned on and held your phone upside down. If you want to fix that, try this:*
strip: `ffmpeg -i input.mov -map_metadata -1 -vcodec copy -acodec copy output.mov` via http://askubuntu.com/questions/139570/how-do-i-remove-all-metadata-from-a-quicktime-movie-file (read comments)
flip: `ffmpeg -i in.mov -vf "vflip" out.mov` via http://superuser.com/questions/578321/how-to-flip-a-video-180-vertical-upside-down-with-ffmpeg (then to ffmpeg documentation)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment