braindump ... cause thread-dumps are not enough ;)

Remove audio from video files

Simple one liner to remove audio from video (useful for private videos which have crappy audio):

ffmpeg -i ${INPUT} -vcodec copy -an ${OUTPUT}

The magic is triggered by the -an option.