Browse Source
Merge pull request #1 from fundatillus/iphone-video-rotate
Create iPhoneVideoRotate.sh
pull/10/head
Josh Clements
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
scripts/iPhoneVideoRotate.sh
|
|
@ -0,0 +1,10 @@ |
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
# This script rotates video files that were created on an iPhone, |
|
|
|
# but being edited on Linux. Requires the CLI version of HandBrake. |
|
|
|
|
|
|
|
# This script takes two arguments: |
|
|
|
# First argument is the input file |
|
|
|
# Second argument is the output file |
|
|
|
|
|
|
|
HandBrakeCLI --rotate=4 --preset "High Profile" -O -i $1 -o $2 |