Python scripts I use to manage my ssh connections, drive mounts, and other bash related things.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
318 B

  1. #!/bin/sh
  2. # This script rotates video files that were created on an iPhone,
  3. # but being edited on Linux. Requires the CLI version of HandBrake.
  4. # This script takes two arguments:
  5. # First argument is the input file
  6. # Second argument is the output file
  7. HandBrakeCLI --rotate=4 --preset "High Profile" -O -i $1 -o $2