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.
|
#!/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
|