diff options
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,10 @@ col() { awk "{ print \$$1; }" } +mp4() { + ffmpeg -i "$1" -vcodec copy -acodec ac3 "${1%.*}.mp4" +} + safedir() { echo "$@ $(pwd)" | md5sum | cut -b-32 } |