Browse Source

Merge pull request #1 from fundatillus/iphone-video-rotate

Create iPhoneVideoRotate.sh
pull/10/head
Josh Clements 5 years ago
committed by GitHub
parent
commit
087b9fb97f
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