Browse Source

Create iPhoneVideoRotate.sh

This script rotates video files that were created on an iPhone, but being edited on Linux. Requires the CLI version of HandBrake. It took me a while to figure out a good way to do this, so I'm passing on to you!
pull/10/head
Josh Clements 5 years ago
committed by GitHub
parent
commit
8310df89ae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      scripts/iPhoneVideoRotate.sh

+ 10
- 0
scripts/iPhoneVideoRotate.sh View File

@ -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

Loading…
Cancel
Save