#!/bin/sh

mplayer -ao pcm $1 -ao pcm:file="/tmp/convert-temp.wav"
faac /tmp/convert-temp.wav -o ./$1.m4r -w
rm /tmp/convert-temp.wav

