Skip to content

Instantly share code, notes, and snippets.

@piffy
Created December 8, 2015 08:38
Show Gist options
  • Save piffy/41fe3fe9c3e31148e6d7 to your computer and use it in GitHub Desktop.
Save piffy/41fe3fe9c3e31148e6d7 to your computer and use it in GitHub Desktop.
rotare iphone videos 90° degrees (ubuntu)
#!/bin/bash
for a in *.MOV; do
avconv -i "$a" -vf "transpose=1" "ROT_$a"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment