#!/bin/bash
IN="$1"
OUT="$2"
[ -z "$OUT" ] && echo "usage: $0 <in.flv> <out>" && exit 1
exec ffmpeg -i "$IN" -vn -acodec copy "$OUT"

