Created
December 8, 2015 08:38
-
-
Save piffy/41fe3fe9c3e31148e6d7 to your computer and use it in GitHub Desktop.
rotare iphone videos 90° degrees (ubuntu)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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