On Mon, 21 Feb 2011 01:29 +, "RW" wrote:
>
> I found a recipe for converting flac to mp3:
>
> flac -cd in.flac | lame -h - out.mp3
>
> and I thought I might be able to able to combine multiple flac files
> into a single mp3 file with something like the following:
>
> ( flac -cd file1.f
I found a recipe for converting flac to mp3:
flac -cd in.flac | lame -h - out.mp3
and I thought I might be able to able to combine multiple flac files
into a single mp3 file with something like the following:
( flac -cd file1.flac ; flac -cd file2.flac ) | lame -h - both.mp3
but in practic