shownotes-w3m-rice/handbrakecli_function.txt

19 lines
496 B
Plaintext
Raw Normal View History

2013-05-24 22:14:09 +00:00
# this is notes for video: http://www.youtube.com/watch?v=gVVeR9KizBk
2012-06-21 07:53:09 +00:00
# just add it to your ~/.bashrc or zshrc
2012-10-03 03:20:21 +00:00
# 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
2012-06-21 07:53:09 +00:00
ipod5g () {
2012-08-29 07:03:36 +00:00
HandBrakeCLI -i "$1" -o "${1%.*}.m4v" --preset="iPod"
2012-06-21 07:53:09 +00:00
}
2012-10-03 03:20:21 +00:00