#!/usr/bin/bash

for FLAC; do
	flac -d -F -s -c "$FLAC" | \
		lame -V0 -m stereo - -o "${FLAC%.flac}.mp3" &
done

wait
