#!/bin/bash for i in *.mp3; do ffmpeg -i $i -ac 1 -ab 128000 -f mp4 -acodec libfaac -y $i | sed 's/\.mp3$/\.m4r/' ;done