You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
496 B
Plaintext

# this is notes for video: http://www.youtube.com/watch?v=gVVeR9KizBk
# just add it to your ~/.bashrc or zshrc
# update version, i think this one is better since,
# it will not try to overwrite files with the same extensions
# just add extra name b4 the extension (filename.ipod5g.mp4)
# loL i learn this the hard way
ipod5g () {
HandBrakeCLI -i "$1" -o "${1%.*}.ipod5g.mp4" --preset="iPod"
}
# old version
ipod5g () {
HandBrakeCLI -i "$1" -o "${1%.*}.m4v" --preset="iPod"
}