master chld/dot / bin / ffcompress
 1#!/bin/sh
 2
 3ffmpeg \
 4	-y \
 5	-i $1 \
 6	-crf 25 \
 7	-preset slow \
 8	-b:a 128k \
 9	Comp$1
10