mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
19 lines
496 B
Plaintext
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"
|
|
}
|
|
|